25 lines
520 B
HTML
25 lines
520 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title> Blog de {{ user }} </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.time }} </h5>
|
|
|
|
<h2 class="description titre"> {{ post_info.subtitle }} </h2>
|
|
<hr/>
|
|
{{ content|safe }}
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|