2025-02-19 12:01:36 +01:00
|
|
|
{# Allow multiple sub_filters #}
|
2025-02-07 13:39:46 +01:00
|
|
|
sub_filter_once off;
|
|
|
|
sub_filter_types text/html;
|
|
|
|
|
|
|
|
{% if global_matomo_tracking_enabled | bool %}
|
2025-02-19 12:01:36 +01:00
|
|
|
{# Include Global Matomo Tracking #}
|
2025-02-19 02:00:41 +01:00
|
|
|
{% include 'roles/nginx-modifier-matomo/templates/matomo-tracking.conf.j2' %}
|
2025-02-07 13:39:46 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2025-02-07 17:25:53 +01:00
|
|
|
{% if global_theming_enabled | bool or global_matomo_tracking_enabled | bool%}
|
2025-02-19 02:00:41 +01:00
|
|
|
sub_filter '</head>' '{% if global_matomo_tracking_enabled | bool %}{% include 'roles/nginx-modifier-matomo/templates/script.j2' %}{% endif %}{% if global_theming_enabled | bool %}{% include 'roles/nginx-modifier-css/templates/link.j2' %}{% endif %}</head>';
|
2025-02-07 17:25:53 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2025-02-07 13:39:46 +01:00
|
|
|
{% if global_theming_enabled | bool %}
|
2025-02-19 12:01:36 +01:00
|
|
|
{# Include Global CSS Location #}
|
2025-02-19 02:00:41 +01:00
|
|
|
{% include 'roles/nginx-modifier-css/templates/location.conf.j2' %}
|
2025-02-07 13:39:46 +01:00
|
|
|
{% endif %}
|