1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-03 08:03:52 +01:00
notes/theme/all.html

17 lines
450 B
HTML

{% extends "base.html" %}
{% block content %}
{{ super() }}
<ul>
{% for page in get_notes() %}
<li>
<a href="{{ page.url }}">{{ page.title }}</a> - {{ page.meta.git_creation_date_localized_raw_iso_date }}
{% for tag in page.meta.tags %}
<span class="md-tag">{{ tag }}</span>
{% endfor %}
</li>
{% endfor %}
</ul>
{% endblock %}