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