19 lines
538 B
Plaintext
19 lines
538 B
Plaintext
{% extends "base.njk" %}
|
|
|
|
{% block article %}
|
|
{% block header %}{{ header | safe }}{% endblock %}
|
|
<article>
|
|
{% block content %}{{ contents | safe }}{% endblock %}
|
|
{% set news = collections["archives"] %}
|
|
<ul>
|
|
{% for article in news %}
|
|
<li>
|
|
<p><a href="/{{ article.path }}">{{ moment(article.date).format('LL') }} | {{ article.title }}</a></p>
|
|
<p>{{ article.excerpt | safe }}</p>
|
|
</li>
|
|
{% else %}
|
|
{% endfor %}
|
|
</ul>
|
|
</article>
|
|
{% endblock %}
|