2024-08-01 02:07:49 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-08-01 11:10:49 -07:00
|
|
|
<h1>Hello, {{ current_user.username }}!</h1>
|
2024-08-01 02:07:49 -07:00
|
|
|
{% for post in posts %}
|
|
|
|
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|