microblog/app/templates/index.html

9 lines
231 B
HTML
Raw Normal View History

2017-09-05 06:28:11 +00:00
{% extends "base.html" %}
{% block content %}
2017-09-13 06:31:39 +00:00
<h1>Hi, {{ current_user.username }}!</h1>
2017-09-05 06:28:11 +00:00
{% for post in posts %}
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
{% endfor %}
{% endblock %}