aboutsummaryrefslogblamecommitdiff
path: root/templates/index.html
blob: cf83d267fb596df345fb3371a2672e2b253d1159 (plain) (tree)
1
2
3
4
5
                                                                                                                 


      
                                                                         








                                                                             
{% extends "base.html" %} {%- block content -%} {% if section.content %} {{ section.content | safe }} {% endif %}

<hr />

{%- for post in section.pages | sort(attribute="date", reverse=false) -%}
<section>
  <ul class="post-list">
    <li>
      <a href="{{- post.path|safe -}}">{{- post.title -}}</a>
      <span class="post-date">{{ post.date | date(format="%d %h %Y")}}</span>
    </li>
  </ul>
</section>
{%- endfor -%} {%- endblock content -%}