{% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% block app_content %}

{{ _('Hi, %(username)s!', username=current_user.username) }}

{% if form %} {{ wtf.quick_form(form) }}
{% endif %} {% for post in posts %} {% include '_post.html' %} {% endfor %} {% endblock %}