footermap-header.html.twig in footermap: a footer site map 8
Available variables:
- title: The menu title.
- title_attributes: A string of HTML attributes to apply to the title element.
- attributes: A string of HTML attributes to apply to the list element.
- items: An array of menu items to render.
1 theme call to footermap-header.html.twig
- FootermapBlock::buildMap in src/
Plugin/ Block/ FootermapBlock.php - Build content for footer site map.
File
templates/footermap-header.html.twigView source
- {#
- /**
- * @file
- * footermap-header.html.twig
- *
- * Available variables:
- * - title: The menu title.
- * - title_attributes: A string of HTML attributes to apply to the title
- * element.
- * - attributes: A string of HTML attributes to apply to the list element.
- * - items: An array of menu items to render.
- */
- #}
- <h3{{ title_attributes }}>{{ title }}</h3>
- <ul{{ attributes }}>
- {% for item in items %}
- {{ item }}
- {% endfor %}
- </ul>