Same filename in this branch
  1. 10 core/modules/book/templates/book-node-export-html.html.twig
  2. 10 core/themes/olivero/templates/content/book-node-export-html.html.twig
  3. 10 core/themes/stable9/templates/content/book-node-export-html.html.twig
  4. 10 core/themes/claro/templates/classy/content/book-node-export-html.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/content/book-node-export-html.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/book/templates/book-node-export-html.html.twig
  2. 9 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
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a single node in a printer-friendly outline.
  5. *
  6. * Available variables:
  7. * - node: Fully loaded node.
  8. * - depth: Depth of the current node inside the outline.
  9. * - title: Node title.
  10. * - content: Node content.
  11. * - children: All the child nodes recursively rendered through this file.
  12. *
  13. * @see template_preprocess_book_node_export_html()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <article>
  19. <h1>{{ title }}</h1>
  20. {{ content }}
  21. {{ children }}
  22. </article>

Related topics