Pull merge.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / theme.twig
1 <?php
2
3 /**
4  * @file
5  * Functions to support theming in the {{ name }} theme.
6  */
7
8 /**
9  * Implements hook_preprocess_HOOK() for html.html.twig.
10  */
11 function {{ machine_name }}_preprocess_html(&$variables) {
12
13 }
14
15 /**
16  * Implements hook_preprocess_HOOK() for page.html.twig.
17  */
18 function {{ machine_name }}_preprocess_page(&$variables) {
19
20 }
21
22 /**
23  * Implements hook_preprocess_HOOK() for node.html.twig.
24  */
25 function {{ machine_name }}_preprocess_node(&$variables) {
26
27 }