microblog/app/templates/index.html

11 lines
221 B
HTML
Raw Normal View History

2012-12-16 08:28:52 +00:00
<!-- extend base layout -->
2012-12-16 08:26:19 +00:00
{% extends "base.html" %}
2012-12-16 08:28:52 +00:00
2012-12-16 08:26:19 +00:00
{% block content %}
<h1>Hi, {{user.nickname}}!</h1>
{% for post in posts %}
<p>
{{post.author.nickname}} says: <b>{{post.body}}</b>
</p>
{% endfor %}
{% endblock %}