diff --git a/system/Plugin.php b/system/Plugin.php index e1da762..464cb29 100644 --- a/system/Plugin.php +++ b/system/Plugin.php @@ -150,6 +150,16 @@ abstract class Plugin implements EventSubscriberInterface $this->container->assets->addEditorCSS($CSS); } + protected function getMeta() + { + return $this->container->assets->meta; + } + + public function addMeta($key,$meta) + { + $this->container->assets->addMeta($key, $meta); + } + protected function activateAxios() { $this->container->assets->activateAxios(); diff --git a/themes/cyanine/layout.twig b/themes/cyanine/layout.twig index 097b3c9..008d718 100644 --- a/themes/cyanine/layout.twig +++ b/themes/cyanine/layout.twig @@ -13,6 +13,8 @@ {{ assets.renderMeta() }} {% block stylesheets %} + + {{ assets.activateTachyons() }} @@ -176,7 +178,6 @@ - {{ assets.activateTachyons() }} {{ assets.renderCSS() }} {% endblock %}