{% block headings %}
{% endblock %}
{% block title %}{{ title|default:"" }}{% endblock %}
{% spaceless %}
{% block subtitle %}
{% if subtitle %}
{{ subtitle }}
{% elif parent and parent.is_published %}
{{ parent.title }}
{% elif page and page.category %}
{{ page.category.title }}
{% endif %}
{% endblock %}
{% endspaceless %}
{% endblock %}
{% block content %}
{% if page and page.content %}
{{ page.content|safe }}
{% endif %}
{% endblock %}
{% endblock %}
{% endblock %}