{% extends "layout.html" %} {% block body %}

{{ params['blog_name'] }}

{{ params['tag_line'] }}
{% with messages = get_flashed_messages(with_categories=true)%} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
{% for post in posts %}

{{ post.title }}

{{post.tagline}}

{{post.content[0:143]}}...
{% endfor %}
{% endblock %}