{% if logo_url %}
{% else %}
{% endif %}
{% if date %}
{{ date }}
{% endif %} {% if version %}
Version {{ version }}
{% endif %} {% if classification %}
{{ classification }}
{% endif %}
{{ title | default("Document Title") }}
{% if subtitle %}
{{ subtitle }}
{% endif %}
{% if executive_summary %}
Executive Summary
{{ executive_summary | safe }}
{% endif %} {% if show_toc and sections %}
Table of Contents
{% for section in sections %}
{{ section.title }}
{{ loop.index + 1 }}
{% if section.subsections %} {% for sub in section.subsections %}
{{ sub.title }}
{% endfor %} {% endif %} {% endfor %}
{% endif %} {% if sections %} {% for section in sections %}
{{ section.title }}
{{ section.content | safe }} {% if section.subsections %} {% for sub in section.subsections %}
{{ sub.title }}
{{ sub.content | safe }}
{% endfor %} {% endif %}
{% endfor %} {% else %}
Introduction
Document content goes here.
{% endif %}