mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-22 12:29:39 +01:00
18 lines
823 B
Django/Jinja
18 lines
823 B
Django/Jinja
{# Allow multiple sub_filters #}
|
|
sub_filter_once off;
|
|
sub_filter_types text/html;
|
|
|
|
{% if global_matomo_tracking_enabled | bool %}
|
|
{# Include Global Matomo Tracking #}
|
|
{% include 'roles/nginx-modifier-matomo/templates/matomo-tracking.conf.j2' %}
|
|
{% endif %}
|
|
|
|
{% if applications | get_css_enabled(application_id) or global_matomo_tracking_enabled | bool%}
|
|
sub_filter '</head>' '{% if global_matomo_tracking_enabled | bool %}{% include 'roles/nginx-modifier-matomo/templates/script.j2' %}{% endif %}{% if applications | get_css_enabled(application_id) %}{% include 'roles/nginx-modifier-css/templates/link.j2' %}{% endif %}</head>';
|
|
{% endif %}
|
|
|
|
{% if applications | get_css_enabled(application_id) %}
|
|
{# Include Global CSS Location #}
|
|
{% include 'roles/nginx-modifier-css/templates/location.conf.j2' %}
|
|
{% endif %}
|