Files
travelrouter/app/templates/index.html
Rich c432f978b4 .
2021-07-03 19:51:16 +01:00

16 lines
255 B
HTML

<html>
<head>
<title>Travel Router</title>
</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>