materio-d9/web/modules/custom/materio_home/materio_home.module

17 lines
375 B
Plaintext
Raw Normal View History

2019-03-25 18:28:17 +01:00
<?php
/**
* Implements hook_theme().
*/
function materio_home_theme($existing, $type, $theme, $path) {
// @see https://www.drupal.org/docs/8/theming/twig/create-custom-twig-templates-from-custom-module
return array(
'materio_home' => array(
// 'render element' => '',
'file' => 'includes/materio_home.inc',
'variables' => array(),
),
);
}