diff --git a/grails-app/taglib/streama/AssetSettingTagLib.groovy b/grails-app/taglib/streama/AssetSettingTagLib.groovy
index bd13b3042..830be8645 100644
--- a/grails-app/taglib/streama/AssetSettingTagLib.groovy
+++ b/grails-app/taglib/streama/AssetSettingTagLib.groovy
@@ -40,4 +40,23 @@ class AssetSettingTagLib {
out << getAssetFromSetting(setting)
out << ');}'
}
+
+
+ def googleAnalytics = { attribs ->
+ def enabled = grailsApplication.config.streama.googleAnalytics?.enabled
+ def id = grailsApplication.config.streama.googleAnalytics?.id
+
+ if(!enabled){
+ return
+ }
+
+ out << ''
+ out << ''
+ out << ''
+ }
}
diff --git a/grails-app/views/index.gsp b/grails-app/views/index.gsp
index 5fb16bd56..59f83947a 100644
--- a/grails-app/views/index.gsp
+++ b/grails-app/views/index.gsp
@@ -42,5 +42,7 @@
+
+