Updating Google Analytics, disabled noindex/nofollow in PRD.

This commit is contained in:
chris062689 2017-02-26 17:25:48 -05:00
parent 7ed4aac85a
commit e7c87488a5
2 changed files with 4 additions and 6 deletions

View File

@ -2,7 +2,7 @@ baseurl = "/"
languageCode = "en-us"
theme = "citra-bs-theme"
googleAnalytics = "UA-73966905-1"
googleanalytics = "UA-73966905-1"
# Define how many objects appear per pagination.
paginate = 10
@ -11,4 +11,4 @@ paginate = 10
[Languages.en]
title = "Citra"
description = "Citra is an open-source emulator for the Nintendo 3DS capable of playing many of your favorite 3DS games."
weight = 1
weight = 1

View File

@ -48,16 +48,14 @@
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
{{ if eq (getenv "HUGO_ENV") "PRD" }}
<meta name="robots" content="noindex,nofollow"/>
{{ with .Site.Params.googleAnalytics }}
{{ with .Site.Params.googleanalytics }}
<script>
(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', '{{ .Site.Params.googleAnalytics }}', 'auto');
ga('create', '{{ .Site.Params.googleanalytics }}', 'auto');
ga('send', 'pageview');
</script>
{{ end }}