help-topic.html.twig in Drupal 10
Same filename and directory in other branches
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.twigView source
- {#
- /**
- * @file
- * Default theme implementation to display a help topic.
- *
- * Available variables:
- * - body: The body of the topic.
- * - related: List of related topic links.
- *
- * @ingroup themeable
- */
- #}
- <article>
- {{ body }}
- {{ related }}
- </article>