blog/templates/index.html

12 lines
311 B
HTML
Raw Normal View History

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") -%}
{%- include "partials/articles-index.html" -%}
2025-06-04 01:39:48 +02:00
</section>
2025-03-27 16:03:55 +01:00
{% endblock content %}