erabletheme.theme 445 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @file
  4. * Functions to support theming in the erabletheme theme.
  5. */
  6. /**
  7. * Implements hook_preprocess_HOOK() for html.html.twig.
  8. */
  9. function erabletheme_preprocess_html(&$variables) {
  10. }
  11. /**
  12. * Implements hook_preprocess_HOOK() for page.html.twig.
  13. */
  14. function erabletheme_preprocess_page(&$variables) {
  15. }
  16. /**
  17. * Implements hook_preprocess_HOOK() for node.html.twig.
  18. */
  19. function erabletheme_preprocess_node(&$variables) {
  20. }