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