mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-17 00:05:51 +00:00
13 lines
253 B
HTML
13 lines
253 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Hi, {{ current_user.username }}!</h1>
|
|
{% for post in posts %}
|
|
<div>
|
|
<p>
|
|
{{ post.author.username }} says: <b>{{ post.body }}</b>
|
|
</p>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|