18 lines
683 B
HTML
18 lines
683 B
HTML
|
|
<ul class="articles">
|
||
|
|
{% for page in section.pages %}
|
||
|
|
{%- if max_articles is defined and loop.index > max_articles -%}{%- break -%}{%- endif -%}
|
||
|
|
<li>
|
||
|
|
<h2 class="title">
|
||
|
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||
|
|
</h2>
|
||
|
|
<span class="date">
|
||
|
|
<meta itemprop="datePublished" content="{{ page.date | date(format='%+') }}">
|
||
|
|
{{ page.date | date(format='%d %B %Y') }}
|
||
|
|
</span>
|
||
|
|
</p class="description">
|
||
|
|
<span>{{ page.summary | safe }}</span>
|
||
|
|
<span><a class="read-more" href="{{ page.permalink }}">Lire la suite...</a></span>
|
||
|
|
</p>
|
||
|
|
</li>
|
||
|
|
{% endfor %}
|
||
|
|
</ul>
|