diff options
Diffstat (limited to 'medio/templates/archives.html')
-rwxr-xr-x | medio/templates/archives.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/medio/templates/archives.html b/medio/templates/archives.html new file mode 100755 index 0000000..63deb04 --- /dev/null +++ b/medio/templates/archives.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block content %} +<div class="page-container archive-container"> + + <div class="article-header-container"> + <div class="background-image-container"> + + {# title with big background image #} + <div class="background-image-small"> + <div class="title-container"> + <h1>Archives for {{ SITENAME }}</h1> + </div> + </div> + </div> + </div> + + <div class="entry-content" style="min-height:100vh"> + + <ul> + {% for article in dates %} + <li> + <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> — {{ article.locale_date }} + </li> + {% endfor %} + </ul> + + </div> + +</div> +{% endblock %} |