This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/chi-teck/drupal-code-generator/templates/d8/theme.twig
2018-11-23 12:29:20 +00:00

28 lines
465 B
Twig

<?php
/**
* @file
* Functions to support theming in the {{ name }} theme.
*/
/**
* Implements hook_preprocess_HOOK() for html.html.twig.
*/
function {{ machine_name }}_preprocess_html(&$variables) {
}
/**
* Implements hook_preprocess_HOOK() for page.html.twig.
*/
function {{ machine_name }}_preprocess_page(&$variables) {
}
/**
* Implements hook_preprocess_HOOK() for node.html.twig.
*/
function {{ machine_name }}_preprocess_node(&$variables) {
}