{# /** * @file * Theme implementation to display the sitemap page. * * Available variables: * - message: A configurable introductory message. * - sitemap_items: An array of renderable content items * * @see template_preprocess() * @see template_preprocess_sitemap() */ #}
{% if message %}
{{ message }}
{% endif %} {% if sitemap_items %} {% for item in sitemap_items %} {{ item }} {% endfor %} {% endif %}