You are here

help-topic.html.twig in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/help_topics/templates/help-topic.html.twig

Default theme implementation to display a help topic.

Available variables:

  • body: The body of the topic.
  • related: List of related topic links.

File

core/modules/help_topics/templates/help-topic.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a help topic.
  5. *
  6. * Available variables:
  7. * - body: The body of the topic.
  8. * - related: List of related topic links.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. <article>
  14. {{ body }}
  15. {{ related }}
  16. </article>

Related topics