aboutsummaryrefslogtreecommitdiffstats
path: root/medio/templates/period_archives.html
diff options
context:
space:
mode:
authorPachamaltese <mvargas@dcc.uchile.cl>2017-04-08 08:49:35 -0300
committerAlexis Metaireau <alexis@notmyidea.org>2017-04-08 13:49:35 +0200
commitb201e57315350340366ca8d2659e5429b85aab10 (patch)
tree2b6fe40e630e8916285d9293da8e057d50b30db9 /medio/templates/period_archives.html
parentaad467728fc44d967a410cea977bf67a67355fb6 (diff)
downloadpelican-themes-b201e57315350340366ca8d2659e5429b85aab10.tar.gz
uploaded medio theme (#477)
* uploaded medio theme * cons example * Added example_pelicanconf.py
Diffstat (limited to 'medio/templates/period_archives.html')
-rwxr-xr-xmedio/templates/period_archives.html20
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> &mdash; {{ article.locale_date }}
+ </li>
+ {% endfor %}
+ </ul>
+
+ </div>
+
+</div>
+{% endblock %}