Files
microblog/app/templates/index.html
2023-06-03 17:32:23 +02:00

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 %}