Version 1
[yaffs-website] / web / core / modules / book / templates / book-node-export-html.html.twig
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>