27 lines
668 B
HTML
27 lines
668 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title> Article de {{ post_info.author }} </title>
|
|
<link rel="stylesheet" href="/static/blog.css" type="text/css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="articles">
|
|
|
|
<h2 class="titre"> {{ post_info.title }} </h2>
|
|
|
|
<h5 class="titre">Publié le : {{ post_info.creation_date }} </h5>
|
|
{% if post_info.last_updated %}
|
|
<h5 class="titre">Mis à jour le : {{ post_info.last_updated }} </h5>
|
|
{% endif %}
|
|
<h3 class="description titre"> {{ post_info.subtitle }} </h3>
|
|
<hr/>
|
|
{{ content|safe }}
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|