{% extends "base.html" %}
{% block title %}
Blog Index
{% endblock title %}
{% block page_content %}
Blog Index
{% if messages %}
{% if messages.error %}
{% else %}
{% endif %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% for p in posts %}
{% for q in p %}
{% for r in q %}
{% if 'title' in r %}
_____________________________________________________________________
{% elif 'category_name' in r %}
{{ r.category_name }}
{% else %}
Post: {{r.savebody}}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% for q in p %}
{% for x in q %}