grav-theme-future2021/future2021.php
2023-01-20 15:42:02 +01:00

22 lines
494 B
PHP

<?php
namespace Grav\Theme;
use Grav\Common\Grav;
use Grav\Common\Theme;
class Future2021 extends Theme
{
public function onThemeInitialized()
{
}
// Add images to twig template paths to allow inclusion of SVG files
public function onTwigLoader()
{
$theme_paths = Grav::instance()['locator']->findResources('theme://images');
foreach($theme_paths as $images_path) {
$this->grav['twig']->addPath($images_path, 'images');
}
}
}