diff options
author | Justin Mayer <entroP@gmail.com> | 2020-06-13 14:58:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 14:58:49 +0200 |
commit | 6a2f4f91df42a9ed99774a6dc54e883c97d795bf (patch) | |
tree | 6c7363c8ba13790a6a666580c29761036b2e2200 /Peli-Kiera/templates/period_archives.html | |
parent | d52b8b0b01e317c9fd16c3dcb08b00bec14a563a (diff) | |
parent | 39ca1b1c0c5ef8fcc41b5ec1aa09f90cfa02de4c (diff) | |
download | pelican-themes-6a2f4f91df42a9ed99774a6dc54e883c97d795bf.tar.gz |
Merge pull request #624 from aleylara/master
Add Peli-Kiera theme
Diffstat (limited to 'Peli-Kiera/templates/period_archives.html')
-rw-r--r-- | Peli-Kiera/templates/period_archives.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Peli-Kiera/templates/period_archives.html b/Peli-Kiera/templates/period_archives.html new file mode 100644 index 0000000..8a6b425 --- /dev/null +++ b/Peli-Kiera/templates/period_archives.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %}{{ SITENAME }} - {{ period | reverse | join(' ') }} Archives{% endblock %} + +{% block content %} + <main> + <section id="list"> + <h2>Archives for {{ period | reverse | join(' ') }}</h2> + <ul> + {% for article in dates %} + <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> + <time>{{ article.date|strftime('%b %Y') }}</time> + </li> + {% endfor %} + </ul> + </section> + </main> +{% endblock %}
\ No newline at end of file |