summaryrefslogtreecommitdiffstats
path: root/templates/index_series.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index_series.html')
-rw-r--r--templates/index_series.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/index_series.html b/templates/index_series.html
new file mode 100644
index 0000000..7d04640
--- /dev/null
+++ b/templates/index_series.html
@@ -0,0 +1,9 @@
+<dl>
+ {% for article in entries %}
+ {% set abstract = article.abstract %}
+ <dt>
+ <a href="{{ article.url }}">{{ article.title }}</a>
+ </dt>
+ <dd>{%if abstract %}{{ abstract }}{% endif %}</dd>
+ {% endfor %}
+</dl>