materio_home.module 375 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Implements hook_theme().
  4. */
  5. function materio_home_theme($existing, $type, $theme, $path) {
  6. // @see https://www.drupal.org/docs/8/theming/twig/create-custom-twig-templates-from-custom-module
  7. return array(
  8. 'materio_home' => array(
  9. // 'render element' => '',
  10. 'file' => 'includes/materio_home.inc',
  11. 'variables' => array(),
  12. ),
  13. );
  14. }