Replace google analytics with google tag manager
This commit is contained in:
parent
ed8c62f4bd
commit
85a2a2a4a7
@ -2,7 +2,7 @@
|
||||
# Copy this file to .env file for development, create environment variables when deploying to production
|
||||
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
|
||||
|
||||
GOOGLE_ANALYTICS=
|
||||
GTM_TAG=
|
||||
|
||||
###> symfony/framework-bundle ###
|
||||
APP_ENV=dev
|
||||
|
@ -3,4 +3,4 @@ twig:
|
||||
debug: '%kernel.debug%'
|
||||
strict_variables: '%kernel.debug%'
|
||||
globals:
|
||||
ga_tracking: "%env(GOOGLE_ANALYTICS)%"
|
||||
gtm_tracking: "%env(GTM_TAG)%"
|
||||
|
@ -21,7 +21,7 @@ server {
|
||||
|
||||
fastcgi_param APP_ENV "dev";
|
||||
fastcgi_param DATABASE_URL "sqlite:///%kernel.project_dir%/var/app.db";
|
||||
fastcgi_param GOOGLE_ANALYTICS "UA-00000-00";
|
||||
fastcgi_param GTM_TAG "GTM-00000";
|
||||
|
||||
internal;
|
||||
}
|
||||
|
@ -92,6 +92,10 @@ $grid-gutter-width: $spacer * 2;
|
||||
|
||||
@import "page/provider-picker";
|
||||
|
||||
html, body {
|
||||
overscroll-behavior-y: contain;
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
|
@ -23,20 +23,24 @@
|
||||
|
||||
<title>{% block title %}Co Jedzie?{% endblock %}</title>
|
||||
|
||||
{% if ga_tracking %}
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ ga_tracking }}"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
|
||||
gtag('js', new Date());
|
||||
gtag('config', '{{ ga_tracking }}');
|
||||
</script>
|
||||
{% if gtm_tracking %}
|
||||
<!-- Google Tag Manager -->
|
||||
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
||||
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
||||
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
||||
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
||||
})(window,document,'script','dataLayer','{{ gtm_tracking }}');</script>
|
||||
<!-- End Google Tag Manager -->
|
||||
{% endif %}
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
{% if gtm_tracking %}
|
||||
<!-- Google Tag Manager (noscript) -->
|
||||
<iframe src="https://www.googletagmanager.com/ns.html?id={{ gtm_tracking }}"
|
||||
height="0" width="0" style="display:none;visibility:hidden"></iframe>
|
||||
<!-- End Google Tag Manager (noscript) -->
|
||||
{% endif %}
|
||||
<div class="container">
|
||||
<div class="alert alert-danger">
|
||||
Aplikacja wymaga do działania obsługi JavaScriptu.
|
||||
|
Loading…
Reference in New Issue
Block a user