]> git.datanom.net - flask-test.git/blob - app/templates/index.html
First half
[flask-test.git] / app / templates / index.html
1 {% extends "base.html" %}
2 {% block content %}
3 <h1>Hi, {{ user.nickname }}!</h1>
4 {% for post in posts %}
5 <div><p>{{ post.author.nickname }} says: <b>{{ post.body }}</b></p></div>
6 {% endfor %}
7 {% endblock %}
8
This page took 0.056476 seconds and 6 git commands to generate.