pywallter/templates/blog.html
2025-12-22 17:51:43 +01:00

34 lines
872 B
HTML

<!doctype html>
<html>
<head>
<title> Article de {{ post_info.author }} </title>
<link rel="stylesheet" href="/{{ post_info.author }}/blog.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="articles">
<div class="head-article">
<h2> {{ post_info.title }} </h2>
<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>Mis à jour le : {{ post_info.last_updated }} </h5>
{% endif %}
<h3 class="description"> {{ post_info.subtitle }} </h3>
</div>
<hr/>
<div class="text-article">
{{ content|safe }}
</div>
</div>
<footer> <p> pywallter </p> </footer>
</body>
</html>