FISO theme

This commit is contained in:
2024-10-29 12:47:52 +01:00
commit b68b5bb58a
16 changed files with 1742 additions and 0 deletions

27
fiso-theme/fiso-theme.php Normal file
View File

@ -0,0 +1,27 @@
<?php
namespace Grav\Theme;
use Grav\Common\Theme;
class FISO extends Theme
{
public static function getSubscribedEvents()
{
return [
'onThemeInitialized' => ['onThemeInitialized', 0],
'onTwigLoader' => ['onTwigLoader', 0],
'onTwigInitialized' => ['onTwigInitialized', 0],
];
}
public function onThemeInitialized()
{
// When using Composer
//require_once __DIR__ . '/vendor/autoload.php';
}
public function onTwigLoader() {}
public function onTwigInitialized() {}
}