25 lines
551 B
HTML
25 lines
551 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{ title }}</h1>
|
|
<p>Bonjour, {{ user.username }} !</p>
|
|
</header>
|
|
<main>
|
|
<h2>Messages :</h2>
|
|
<ul>
|
|
{% for post in posts %}
|
|
<li>
|
|
<strong>{{ post.author }}</strong>: {{ post.content }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
</html>
|