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