summaryrefslogtreecommitdiffstats
path: root/templates/index_series.html
blob: 7d04640bcfeca1a4b1d3e2a5822c860118f545f7 (plain)
1
2
3
4
5
6
7
8
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>