13 lines
No EOL
334 B
HTML
13 lines
No EOL
334 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<section class="intro">
|
|
{{ section.content | safe }}
|
|
</section>
|
|
<section class="last-articles">
|
|
<h1>Derniers articles</h1>
|
|
{%- set section = get_section(path="articles/_index.md") -%}
|
|
{%- set max_articles = 3 -%}
|
|
{%- include "partials/articles.html" -%}
|
|
</section>
|
|
{% endblock content %} |