2025-03-27 16:03:55 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2025-06-04 01:39:48 +02:00
|
|
|
<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>
|
2025-03-27 16:03:55 +01:00
|
|
|
{% endblock content %}
|