grav-theme-future2021/future2021.php
pmoreno.rodriguez b5621e7728 Version 1.0.2
2022-11-08 21:42:43 +01:00

22 lines
490 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');
}
}
}