{% extends "base.html" %} {% import "bootstrap_wtf.html" as wtf %} {% block content %}

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

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