kitoy.me/templates/articles.html

11 lines
326 B
HTML
Raw Permalink Normal View History

2020-04-19 09:06:04 +02:00
{% extends "index.html" %}
{% import "post_macros.html" as post_macros %}
{% block content %}
2023-10-06 05:14:12 +02:00
<h2 class="titre" > {{ page.title }} </h2>
2020-04-19 09:06:04 +02:00
<h2 class="description"> {{ post_macros::polish(content=page.description) }} </h2>
<hr />
{{ post_macros::polish(content=page.content) }}
{%- endblock content %}