X-Git-Url: http://git.datanom.net/flask-test.git/blobdiff_plain/43064c75212b8e5f05e362d8ee9acc58287f930b..db4f0ba9d4aec596f179335f1d86b3dd2bb206c6:/app/templates/index.html diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..80a6eb3 --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block content %} +

Hi, {{ user.nickname }}!

+ {% for post in posts %} +

{{ post.author.nickname }} says: {{ post.body }}

+ {% endfor %} +{% endblock %} +