aboutsummaryrefslogblamecommitdiff
path: root/templates/blog.html
blob: 88e1eb6a5d51f1ea998c31ef71ce4c08bd760415 (plain) (tree)
1
2
3
4
5
6
7
8
9


                         



                         

                                                                   
                                     



                               
                                                                                                                                             
                                
                                                                                      





                     
{% extends 'base.html' %}

{% block content %}
<section>
    <h1>Latest posts</h1>
</section>

{% for year, posts in section.pages | group_by(attribute='year') %}
<section>
    <h2>{{ year | trim | safe }}</h2>

    <ul>
        {% for page in posts %}
        <li>
            <time datetime="{{ page.date | date(format='%+') | trim | safe }}">{{ page.date | date(format='%Y/%m/%d') | trim | safe }}</time>
            <span>&mdash;</span>
            <a href="{{ page.path | trim | safe }}">{{ page.title | trim | safe }}</a>
        </li>
        {% endfor %}
    </ul>
</section>
{% endfor %}
{% endblock content %}