Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael H <harmon.michael@outlook.com>2021-04-12 02:45:13 +0300
committerGitHub <noreply@github.com>2021-04-12 02:45:13 +0300
commit375af64031844e6161d8ce6e778da304e0680230 (patch)
tree6041106368e235a39ade85b19f7c271eb52e1451 /plugins/Morpheus
parent4850faed9e3d657321445c15ad6ae35292a02d0e (diff)
Add event tags to top and bottom of body (#17333)
Diffstat (limited to 'plugins/Morpheus')
-rw-r--r--plugins/Morpheus/templates/layout.twig3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Morpheus/templates/layout.twig b/plugins/Morpheus/templates/layout.twig
index 3eb7ba74ed..b0c618a516 100644
--- a/plugins/Morpheus/templates/layout.twig
+++ b/plugins/Morpheus/templates/layout.twig
@@ -31,6 +31,7 @@
{% endblock %}
</head>
<body id="{{ bodyId|default('') }}" ng-app="app" class="{{ bodyClass|default('') }}">
+ {{ postEvent('Template.bodyTop' ) }}
{% block body %}
@@ -53,5 +54,7 @@
</div>
{% include "@CoreHome/_adblockDetect.twig" %}
+
+ {{ postEvent('Template.bodyBottom' ) }}
</body>
</html>