{% extends "base.html" %} {% block indexcurrent %}class="current"{% endblock %} {% block content %}

Hello, {{ current_user.username }}!

{% if form %}
{{ form.hidden_tag() }}

{{ form.post.label }} {{ form.post(cols=32, rows=4) }} {% for error in form.post.errors %} [{{ error }}] {% endfor %}

{{ form.submit() }}

{% endif %} {% for post in posts %} {% include '_post.html' %} {% endfor %} {% if prev_url %}Newer Posts{% endif %} {% if next_url %}Older Posts{% endif %} {% endblock %}