{% extends "blog/base.html" %} {% block title %} Blog Posts {% endblock title %} {% block main %} {% if alert %}
{{ alert.type }} {{ alert.message }}
{% endif %} {% if current_user.is_authenticated() %}
 New
{% endif %} {% for post in posts %}

{{ post.title }}

Posted by {{post.user_name}} on {{post.post_date.strftime('%d %b, %Y')}}

{% if post.tags %}    {% for tag in post.tags %} {{ tag }}    {% endfor %}
{% endif %}
{% endfor %} {% if meta %}
{% endif %} {% endblock main %}