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