{% extends 'base.html' %} {% block content %}

{{works.title}}

{{works.formatted_header|safe}}

{{works.formatted_body|safe}}

{% if latest_content_list %}
{% if works.children.all %} {% for child in works.children.all %} {% endfor %} {% endif %}
{% for works in latest_content_list %}
{{ works.title }}

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

{% endfor %} {% else %}

No works.

{% endif %}
{% endblock %}