annotate vendor/chi-teck/drupal-code-generator/templates/d8/theme.twig @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
rev   line source
Chris@0 1 <?php
Chris@0 2
Chris@0 3 /**
Chris@0 4 * @file
Chris@0 5 * Functions to support theming in the {{ name }} theme.
Chris@0 6 */
Chris@0 7
Chris@0 8 /**
Chris@0 9 * Implements hook_preprocess_HOOK() for html.html.twig.
Chris@0 10 */
Chris@0 11 function {{ machine_name }}_preprocess_html(&$variables) {
Chris@0 12
Chris@0 13 }
Chris@0 14
Chris@0 15 /**
Chris@0 16 * Implements hook_preprocess_HOOK() for page.html.twig.
Chris@0 17 */
Chris@0 18 function {{ machine_name }}_preprocess_page(&$variables) {
Chris@0 19
Chris@0 20 }
Chris@0 21
Chris@0 22 /**
Chris@0 23 * Implements hook_preprocess_HOOK() for node.html.twig.
Chris@0 24 */
Chris@0 25 function {{ machine_name }}_preprocess_node(&$variables) {
Chris@0 26
Chris@0 27 }