2022-04-27 11:30:43 +02: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) {
}