You are here

ogmenu_instance.html.twig in Organic Groups Menu (OG Menu) 8

ogmenu_instance.html.twig Default theme implementation to present OG Menu instance data.

This template is used when viewing OG Menu instance pages.

Available variables:

  • content: A list of content items. Use 'content' to print all content, or
  • attributes: HTML attributes for the container element.

File

templates/ogmenu_instance.html.twig
View source
  1. {#
  2. /**
  3. * @file ogmenu_instance.html.twig
  4. * Default theme implementation to present OG Menu instance data.
  5. *
  6. * This template is used when viewing OG Menu instance pages.
  7. *
  8. *
  9. * Available variables:
  10. * - content: A list of content items. Use 'content' to print all content, or
  11. * - attributes: HTML attributes for the container element.
  12. *
  13. * @see template_preprocess_ogmenu_instance()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div{{ attributes.addClass('ogmenu_instance') }}>
  19. {% if content %}
  20. {{- content -}}
  21. {% endif %}
  22. </div>