rework blog theme

This commit is contained in:
2025-12-22 17:51:43 +01:00
parent 9c36563ffd
commit 7d4a374d3e
6 changed files with 166 additions and 95 deletions

View File

@@ -12,18 +12,22 @@
<body>
<div class="articles">
<h2 class="titre"> {{ post_info.title }} </h2>
<div class="head-article">
<h2> {{ post_info.title }} </h2>
<h5 class="titre">Publié le : {{ post_info.creation_date }} par <a href="{{ url_for('blog.view') }}/{{ post_info.author }}"> {{ post_info.author }} </h5></a>
<h5>Publié le : {{ post_info.creation_date }} par <a href="{{ url_for('blog.view') }}/{{ post_info.author }}"> {{ post_info.author }} </h5></a>
{% if post_info.last_updated %}
<h5 class="titre">Mis à jour le : {{ post_info.last_updated }} </h5>
<h5>Mis à jour le : {{ post_info.last_updated }} </h5>
{% endif %}
<h3 class="description titre"> {{ post_info.subtitle }} </h3>
<hr/>
<h3 class="description"> {{ post_info.subtitle }} </h3>
</div>
<hr/>
<div class="text-article">
{{ content|safe }}
</div>
</div>
<footer> <p> pywallter </p> </footer>
</body>
</html>