summaryrefslogtreecommitdiffstats
path: root/templates/index_archives_short.html
blob: 7ec12dcf4f8e49c74d239f1916a05c58c36eb4e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
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>