diff --git a/app/views/layouts/_google_analytics.html.haml b/app/views/layouts/_google_analytics.html.haml new file mode 100644 index 000000000..5ab328f45 --- /dev/null +++ b/app/views/layouts/_google_analytics.html.haml @@ -0,0 +1,9 @@ +- ua_id = Rails.env.production? ? 'UA-63927236-2' : 'UA-63927236-4' +:javascript + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); + + ga('create', '#{ua_id}', 'auto'); + ga('send', 'pageview'); diff --git a/app/views/root/landing.html.haml b/app/views/root/landing.html.haml index 61c4ed7c4..ddff3b458 100644 --- a/app/views/root/landing.html.haml +++ b/app/views/root/landing.html.haml @@ -10,7 +10,9 @@ = link_to "Demander une démo", "mailto:#{t("dynamics.contact_email")}?subject=Demande de démo TPS", - :class => "hero-button" + class: "hero-button", + target: "_blank", + onclick: "javascript: ga('send', 'pageview', '/demander-une-demo')" %p.hero-phone-cta ou nous appeler au 01 40 15 68 49 @@ -132,6 +134,8 @@ %div = link_to "Demander une démo", "mailto:#{t('dynamics.contact_email')}?subject=Demande de démo TPS", - :class => "cta-panel-button" + class: "cta-panel-button", + target: "_blank", + onclick: "javascript: ga('send', 'pageview', '/demander-une-demo')" %p.cta-panel-phone-cta ou nous appeler au 01 40 15 68 49 diff --git a/config/deploy.rb b/config/deploy.rb index ef1d6b4e1..1895843ba 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -69,7 +69,6 @@ set :shared_paths, [ 'config/france_connect.yml', 'config/initializers/mailjet.rb', 'config/initializers/storage_url.rb', - 'app/views/layouts/_google_analytics.html', 'app/views/cgu/index.html.haml' ]