{% extends 'base.html' %} {% block content %}
{% if texts.image %} {% endif %}

{{texts.title}}

{{texts.formatted_header|safe}}

{{texts.formatted_body|safe}}

{% include "opt.html" with content=texts %}
{% if latest_content_list %}
{% if texts.children.all %} {% for child in texts.children.all %} {% endfor %} {% endif %}
{% for texts in latest_content_list %}
{% if texts.image %} {% endif %}
{{ texts.title }}

{{texts.header|striptags|truncatechars:100}}

{% endfor %} {% else %}

No texts.

{% endif %}
{% endblock %}