{% from 'templates/audio_player.html' import audio_player %} {% include 'templates/common_head.html' %} {{ page_title | default('List Page') }} {% include 'templates/navbar.html' %} {# Include the navbar #}
{{ site_description_html | safe }}
{% if should_include_audio_player | default(False) %} {{ audio_player() }} {# Ensure this has appropriate margins/padding if needed #} {% endif %}
    {% for item_html in list_items_html %} {{ item_html | safe }} {% endfor %}
{% if background_image_url %}
{% endif %}