blog/templates/blog.html

8 lines
167 B
HTML
Raw Permalink Normal View History

2025-12-23 22:27:51 +01:00
{% extends "base.html" %}
{% block content %}
2025-12-23 22:27:52 +01:00
<h1 class="section-title">
2025-12-23 22:27:51 +01:00
{{ section.title }}
</h1>
2025-12-23 22:27:52 +01:00
{%- include "partials/articles.html" -%}
2025-12-23 22:27:51 +01:00
{% endblock content %}