Hi@all,
is it possible to override (or extend) an existing block which is defined in a template?
I want to include a special JS-file on a specific page. So I tried to "override" the javascrips block which is defined in "base.html.twig".
TWIG
{% block javascrips %}
{# Google Maps #}
{% do assets.add('//maps.googleapis.com/maps/api/js?sensor=false') %}
{% endblock %}
but it doesn't work.