{% extends "base.html" %} {% block container %}
{% for p in posts %}

{{ p.title|safe }}

{% if p.content_img %}
{{ p.content_img|safe }}
{% endif %} {% if p.show_teaser %}
{{ p.teaser|safe }}

Continue Reading

{% else %}
{{ p.content|safe }}
{% endif %}
{% endfor %}
{% endblock %} {% block footer %} {% endblock %}