summaryrefslogtreecommitdiffstats
path: root/templates/index_archives_short.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index_archives_short.html')
-rw-r--r--templates/index_archives_short.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/index_archives_short.html b/templates/index_archives_short.html
new file mode 100644
index 0000000..7ec12dc
--- /dev/null
+++ b/templates/index_archives_short.html
@@ -0,0 +1,12 @@
+<ul>
+ {% for article in contents %}
+ {% if article.date %}
+ <li><a href="{{ article.url }}">{{ article.title }}</a>
+ <span style="font-size: 90%">
+ (<time datetime="{{ article.date }}">{{ article.date_str }}</date>{%if article.series_name %},
+ <a title="{{ article.series_name }}" href="{{ article.series_url }}"><span class="icon"><svg><use href="/img/icons.svg#book"></use></svg></span></a>{% endif %})
+ </span>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul>