started materio_home module

This commit is contained in:
2019-03-25 18:28:17 +01:00
parent 96eb901675
commit e514a876c2
6 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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(),
),
);
}