diff options
Diffstat (limited to 'medio/templates/period_archives.html')
-rwxr-xr-x | medio/templates/period_archives.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/medio/templates/period_archives.html b/medio/templates/period_archives.html new file mode 100755 index 0000000..e9e6848 --- /dev/null +++ b/medio/templates/period_archives.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% block content %} +<div class="page-container archive-container"> + + <div class="entry-content"> + + <h1>Archives for {{ period | reverse | join(' ') }}</h1> + + <ul> + {% for article in dates %} + <li> + <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> — {{ article.locale_date }} + </li> + {% endfor %} + </ul> + + </div> + +</div> +{% endblock %} |