diff options
Diffstat (limited to 'pelican-striped-html5up/templates/archives.html')
-rw-r--r-- | pelican-striped-html5up/templates/archives.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pelican-striped-html5up/templates/archives.html b/pelican-striped-html5up/templates/archives.html new file mode 100644 index 0000000..2f731f8 --- /dev/null +++ b/pelican-striped-html5up/templates/archives.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} +{% block content %} +<div id="content"> +<div class="inner"> +<article class="box post post-excerpt"> +<h2>Archives for {{ SITENAME }}</h2> + +<header> +{% for article in dates %} + <h2>{{ article.locale_date }}</h2> + <p><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></p> + <p>{{article.headline}}</p> +{% endfor %} +</header> +</article> +</div> +</div> +{% endblock %} |