book-node-export-html.html.twig 523 B

1234567891011121314151617181920212223
  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. {# {{ depth }} #}
  21. {{ content }}
  22. {{ children }}
  23. </article>