site/backend/app/templates/index.html

12 lines
218 B
HTML
Raw Normal View History

2024-08-01 09:07:49 +00:00
{% extends "base.html" %}
{% block content %}
<h1>Helloo, {{ user.username }}!</h1>
{% for post in posts %}
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
{% endfor %}
{% endblock %}