30 lines
921 B
HTML
30 lines
921 B
HTML
|
{% extends "base.html" %} {% block content %}
|
||
|
<h1 class="title">{{ section.title }}</h1>
|
||
|
|
||
|
<article>{{ section.content | safe }}</article>
|
||
|
|
||
|
{% for year, posts in section.pages | group_by(attribute="year") %}
|
||
|
<ul class="posts flat">
|
||
|
<h2 class="archive-year">{{ year }}</h2>
|
||
|
{% for post in posts %}
|
||
|
<li class="post">
|
||
|
<div class="post-header">
|
||
|
<div class="meta">
|
||
|
<div class="date">
|
||
|
<span class="day">{{ post.day }}</span>
|
||
|
<span class="rest">{{ post.date | date(format='%b') }}</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="matter">
|
||
|
<h4 class="title small">
|
||
|
<a href="{{ post.permalink | safe }}">{{ post.title }}</a>
|
||
|
{% if post.draft %}<span class="draft">Draft</span>{% endif %}
|
||
|
</h4>
|
||
|
<span class="description"> {{post.description}} </span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endfor %} {% endblock content %}
|