forked from ti-nuage/site
Aussi, une nouvelle page décrit l'association, et sert d'introduction avant de proposer l'adhésion.
22 lines
701 B
Plaintext
22 lines
701 B
Plaintext
{% extends "base.njk" %}
|
|
|
|
{% block article %}
|
|
{% block header %}{{ header | safe }}{% endblock %}
|
|
<article>
|
|
{% block content %}{{ contents | safe }}{% endblock %}
|
|
|
|
<section class="Services">
|
|
<h2 class="tac mt128 mb64">Actualités</h2>
|
|
{% for article in collections["news"] %}
|
|
<h3><a href="{{ article.path }}">{{ moment(article.date).format('LL') }} | {{article.title }}</a></h3>
|
|
{{ article.excerpt | safe }}
|
|
<p><a href="{{ article.path }}">Lire la suite...</a></p>
|
|
{% else %}
|
|
{% endfor %}
|
|
<div class="tac mt32">
|
|
<a class="Button" href="/blog">Voir les archives</a>
|
|
</div>
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|