16 lines
630 B
Twig
16 lines
630 B
Twig
{# SPDX-License-Identifier: EUPL-1.2 #}
|
|
{# Authors: see README.md #}
|
|
|
|
{{ include('@SeacmsAuth/head-scripts.twig') }}
|
|
{% if canEdit %}
|
|
<script src="{{ plugins_url }}/PicoContentEditor/js/vendor/noty/noty.min.js" type="text/javascript"></script>
|
|
|
|
<script src="{{ plugins_url }}/PicoContentEditor/js/vendor/ContentTools/content-tools.min.js"></script>
|
|
{% if dataLang is not empty %}
|
|
<script id="ContentToolsLanguage" type="application/json" data-lang="{{ dataLang.lang }}">{{ dataLang.data|raw }}</script>
|
|
{% endif %}
|
|
<script src="{{ plugins_url }}/PicoContentEditor/js/editor.js"></script>
|
|
{% endif %}
|
|
|
|
|