website/templates/shortcodes/last_articles.html

7 lines
224 B
HTML
Raw Normal View History

2022-09-19 16:41:09 +00:00
{% for page in section.pages %}
<article>
<h2 class="article-list_title"><a href="{{page.permalink|safe}}">{{page.title}}</a></h2>
<small>{{page.date}}</small>
<p>{{page.description|safe}}</p>
</article>
{% endfor %}