blog/templates/index.html

12 lines
No EOL
311 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") -%}
{%- include "partials/articles-index.html" -%}
</section>
{% endblock content %}