10 lines
240 B
HTML
10 lines
240 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<body>
|
|
<h1>Hello, {{ user.username }}!</h1>
|
|
{% for post in posts %}
|
|
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
|
|
{% endfor %}
|
|
</body>
|
|
{% endblock %} |