]> git.p6c8.net - pcdenotes.git/blob - notes/templates/archive_month.html
Moved more styles to CSS file
[pcdenotes.git] / notes / templates / archive_month.html
1 {% extends "note_base.html" %}
2
3 {% block title %}Archive {{ month }} / {{ year }} – Notes{% endblock %}
4
5 {% block content %}
6 <h2>Archive {{ month }} / {{ year }}</h2>
7
8 {% if notes %}
9 <ul>
10 {% for note in notes %}
11 <li><a href="{{ note.get_absolute_url }}">{{ note.title }}</a></li>
12 {% endfor %}
13 </ul>
14 {% else %}
15 <p>No notes</p>
16 {% endif %}
17 {% endblock %}

patrick-canterino.de