site/backend/app/templates/index.html
2024-08-01 11:10:49 -07:00

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