microblog/app/templates/index.html

9 lines
223 B
HTML
Raw Normal View History

2017-09-05 06:28:11 +00:00
{% 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 %}