{# ===================================================== #}
{# GOOGLE ANALYTICS + ADS ------------------------------ #}
{# ===================================================== #}
{% if tracking_tools.GOOGLE_ANALYTICS_ID is defined and tracking_tools.GOOGLE_ANALYTICS_ID is not empty %}
<script async
src="https://www.googletagmanager.com/gtag/js?id={{ tracking_tools.GOOGLE_ANALYTICS_ID }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
{# Google Analytics #}
gtag('config', '{{ tracking_tools.GOOGLE_ANALYTICS_ID }}');
{# Google Ads (optionnel) #}
{% if tracking_tools.GOOGLE_ADS_ID is defined and tracking_tools.GOOGLE_ADS_ID is not empty %}
gtag('config', '{{ tracking_tools.GOOGLE_ADS_ID }}');
{% endif %}
</script>
{% endif %}