File tree 6 files changed +45
-3
lines changed
6 files changed +45
-3
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ header_pages:
12
12
collections :
13
13
team :
14
14
output : true
15
+ google_analytics : G-JFZW6XXB7T
Original file line number Diff line number Diff line change 68
68
} ) ;
69
69
} ) ;
70
70
</ script >
71
-
71
+ <!-- Google tag (gtag.js) -->
72
+ < script async src ="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }} "> </ script >
73
+ < script >
74
+ window . dataLayer = window . dataLayer || [ ] ;
75
+ function gtag ( ) { dataLayer . push ( arguments ) ; }
76
+ gtag ( 'js' , new Date ( ) ) ;
77
+ gtag ( 'config' , '{{ site.google_analytics }}' ) ;
78
+ </ script >
72
79
</ head >
73
80
< body onload ="showInstructions(); ">
74
81
< div id ="container ">
Original file line number Diff line number Diff line change 1
-
2
1
< html >
3
2
< head >
4
3
< title > Empirical Standards</ title >
5
4
< script src ="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js "> </ script >
6
5
< meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7
6
< link rel ="stylesheet " href ="../form_generator/css/appearance.css ">
8
- < link rel ="stylesheet " href ="../form_generator/css/tooltip.css ">
7
+ < link rel ="stylesheet " href ="../form_generator/css/tooltip.css ">
8
+
9
+ <!-- Google tag (gtag.js) -->
10
+ < script async src ="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }} "> </ script >
11
+ < script >
12
+ window . dataLayer = window . dataLayer || [ ] ;
13
+ function gtag ( ) { dataLayer . push ( arguments ) ; }
14
+ gtag ( 'js' , new Date ( ) ) ;
15
+ gtag ( 'config' , '{{ site.google_analytics }}' ) ;
16
+ </ script >
9
17
</ head >
10
18
< body >
11
19
< div id ="container ">
Original file line number Diff line number Diff line change 10
10
< meta name ="viewport " content ="width=device-width, initial-scale=1 ">
11
11
< link rel ="stylesheet " href ="../form_generator/css/appearance.css ">
12
12
< link rel ="stylesheet " href ="../form_generator/css/tooltip.css ">
13
+
14
+ <!-- Google tag (gtag.js) -->
15
+ < script async src ="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }} "> </ script >
16
+ < script >
17
+ window . dataLayer = window . dataLayer || [ ] ;
18
+ function gtag ( ) { dataLayer . push ( arguments ) ; }
19
+ gtag ( 'js' , new Date ( ) ) ;
20
+ gtag ( 'config' , '{{ site.google_analytics }}' ) ;
21
+ </ script >
13
22
</ head >
14
23
< body onload ="generateStandardChecklist() "> </ body >
15
24
</ html >
Original file line number Diff line number Diff line change @@ -57,6 +57,15 @@ function openStandardFromURL(evt) {
57
57
document.getElementById(standardName+'_b').className += " active";
58
58
}
59
59
</script>
60
+
61
+ <!-- Google tag (gtag.js) -->
62
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
63
+ <script>
64
+ window.dataLayer = window.dataLayer || [];
65
+ function gtag(){dataLayer.push(arguments);}
66
+ gtag('js', new Date());
67
+ gtag('config', '{{ site.google_analytics }}');
68
+ </script>
60
69
</head>
61
70
<body onload="openStandardFromURL(event)">
62
71
Original file line number Diff line number Diff line change @@ -57,6 +57,14 @@ function openSupplementFromURL(evt) {
57
57
document.getElementById(supplementName+'_b').className += " active";
58
58
}
59
59
</script>
60
+ <!-- Google tag (gtag.js) -->
61
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
62
+ <script>
63
+ window.dataLayer = window.dataLayer || [];
64
+ function gtag(){dataLayer.push(arguments);}
65
+ gtag('js', new Date());
66
+ gtag('config', '{{ site.google_analytics }}');
67
+ </script>
60
68
</head>
61
69
<body onload="openSupplementFromURL(event)">
62
70
You can’t perform that action at this time.
0 commit comments