summaryrefslogtreecommitdiffstats
path: root/templates/index_archives_full.html
blob: 3267e14f382744007c71217059a31f4972d3dbc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>