jack/templates/index.html

20 lines
401 B
HTML

<h1>{{ site.name }}</h1>
<ul>
{% for section in site.sections %}
<li>{{ section }}</li>
{% endfor %}
</ul>
<ul>
{% for year, list in site.published_articles|reverse|groupby('published_date.year') %}
<li><b>{{ year }}</b>
<ul>
{% for event in list %}
<li>{{event.title}}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>