Files
travelrouter/app/templates/index.html
Rich 582fca2e90 .
2021-07-03 08:17:46 +01:00

20 lines
355 B
HTML

<html>
<head>
{% if title %}
<title>{{ title }} - Microblog</title>
{% else %}
<title>Welcome to Microblog</title>
{% endif %}
</head>
<body>
<h1>Hi, {{ user.username }}!</h1>
{% for post in posts %}
<div>
<p>{{ post.author.username }} says: <b>{{ post.body }}</b></p>
</div>
{% endfor %}
</body>
</html>