book-node-export-html.html.twig
Same filename in this branch
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content/book-node-export-html.html.twig
- 8.9.x core/themes/seven/templates/classy/content/book-node-export-html.html.twig
- 8.9.x core/themes/claro/templates/classy/content/book-node-export-html.html.twig
- 8.9.x core/themes/bartik/templates/classy/content/book-node-export-html.html.twig
- 8.9.x core/themes/stable/templates/content/book-node-export-html.html.twig
- 8.9.x core/themes/classy/templates/content/book-node-export-html.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/classy/content/book-node-export-html.html.twig
- 9 core/themes/olivero/templates/content/book-node-export-html.html.twig
- 9 core/themes/stable9/templates/content/book-node-export-html.html.twig
- 9 core/themes/seven/templates/classy/content/book-node-export-html.html.twig
- 9 core/themes/claro/templates/classy/content/book-node-export-html.html.twig
- 9 core/themes/bartik/templates/classy/content/book-node-export-html.html.twig
- 9 core/themes/stable/templates/content/book-node-export-html.html.twig
- 9 core/themes/classy/templates/content/book-node-export-html.html.twig
- 9 core/modules/book/templates/book-node-export-html.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content/book-node-export-html.html.twig
- 10 core/themes/olivero/templates/content/book-node-export-html.html.twig
- 10 core/themes/stable9/templates/content/book-node-export-html.html.twig
- 10 core/themes/claro/templates/classy/content/book-node-export-html.html.twig
- 10 core/modules/book/templates/book-node-export-html.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/content/book-node-export-html.html.twig
- 11.x core/themes/olivero/templates/content/book-node-export-html.html.twig
- 11.x core/themes/stable9/templates/content/book-node-export-html.html.twig
- 11.x core/themes/claro/templates/classy/content/book-node-export-html.html.twig
- 11.x core/modules/book/templates/book-node-export-html.html.twig
Default theme implementation for a single node in a printer-friendly outline.
Available variables:
- node: Fully loaded node.
- depth: Depth of the current node inside the outline.
- title: Node title.
- content: Node content.
- children: All the child nodes recursively rendered through this file.
See also
template_preprocess_book_node_export_html()
1 theme call to book-node-export-html.html.twig
- BookExport::bookNodeExport in core/
modules/ book/ src/ BookExport.php - Generates printer-friendly HTML for a node.
File
-
core/
modules/ book/ templates/ book-node-export-html.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation for a single node in a printer-friendly outline.
- *
- * Available variables:
- * - node: Fully loaded node.
- * - depth: Depth of the current node inside the outline.
- * - title: Node title.
- * - content: Node content.
- * - children: All the child nodes recursively rendered through this file.
- *
- * @see template_preprocess_book_node_export_html()
- *
- * @ingroup themeable
- */
- #}
- <article>
- <h1>{{ title }}</h1>
- {{ content }}
- {{ children }}
- </article>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.