16 lines
255 B
HTML
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> |