123456789101112131415161718192021222324252627 |
- <?php
- /**
- * @file
- * Functions to support theming in the figlimal theme.
- */
- /**
- * Implements hook_preprocess_HOOK() for html.html.twig.
- */
- function figlimal_preprocess_html(&$variables) {
- }
- /**
- * Implements hook_preprocess_HOOK() for page.html.twig.
- */
- function figlimal_preprocess_page(&$variables) {
- }
- /**
- * Implements hook_preprocess_HOOK() for node.html.twig.
- */
- function figlimal_preprocess_node(&$variables) {
- }
|