mirror of
https://github.com/typemill/typemill.git
synced 2025-01-16 21:08:20 +01:00
Fix assets.addMeta
This commit is contained in:
parent
627aa4da67
commit
e2fedd8878
@ -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();
|
||||
|
@ -13,6 +13,8 @@
|
||||
{{ assets.renderMeta() }}
|
||||
|
||||
{% block stylesheets %}
|
||||
|
||||
{{ assets.activateTachyons() }}
|
||||
|
||||
<link rel="stylesheet" href="{{ base_url }}/themes/cyanine/css/style.css??20210821" />
|
||||
|
||||
@ -176,7 +178,6 @@
|
||||
|
||||
</style>
|
||||
|
||||
{{ assets.activateTachyons() }}
|
||||
{{ assets.renderCSS() }}
|
||||
|
||||
{% endblock %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user