jumbo-jekyll-theme 6.0.0.3 → 6.0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df56de1e8b0c939d4da79c7a435e3fb5bb71f2b2205b260f4dd6f025ca7864cb
4
- data.tar.gz: 61f3727930c25426f1a0db4248d8a7b0710114757fea25fbdc2bd112a9699f39
3
+ metadata.gz: 7516f5ca2ff820ce48444a6b03fb66fd47c79566d75e7082d7d6d2edf7c97756
4
+ data.tar.gz: 36cc3fc08ed4a9fd2b5b6d430300f369bbd262cba62fc510582bf84cecd8cef4
5
5
  SHA512:
6
- metadata.gz: a8a0d98a3815ab3c12c209a1492a123a23664946b856a8793d81ca18bae98dd2b426364ef4823192191f1ec445086a2685cef26b8cf681999b1446fb4af9c749
7
- data.tar.gz: 69582e78dad72e3fb52307514ddde348997007856acd13fdaff5c997a21b32914ecdd7a61df6b810e12f637e53fab81213777ae17c03baae7ede85e3a6314aa4
6
+ metadata.gz: 92cc1424a2279e40238c32c9a0374188325d41f6b2bee8b53069ec0622d6bb8190ef5eb5304148c8b2e513ca16e5d3c533366462bc96b79b6408bbb26b63612c
7
+ data.tar.gz: b1db169dbdc0038d25bb5190f909d135eba1c1dc55509f8e3b1bf5983b564507441fd830f0dd2cf7a988227ab473d462981f4b30e79ece9a2cb2d6888906ae42
@@ -77,6 +77,24 @@ http2_resources:
77
77
  google_analytics:
78
78
  enabled: true
79
79
  code: GTM-XXXX
80
+ cookies:
81
+ necessary:
82
+ - name: cookieControl
83
+ description: >
84
+ This is used to control the display of the preferences pop up. Without this, we wouldn't know if you've clicked Accept!
85
+ - name: cookieControlPrefs
86
+ description: >
87
+ This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!
88
+ marketing:
89
+ - name: _ga
90
+ description: >
91
+ 2 years - Used to distinguish users.
92
+ - name: _gid
93
+ description: >
94
+ 24 hours - Used to distinguish users.
95
+ - name: _gat
96
+ description: >
97
+ 1 minute - Used to throttle request rate.
80
98
  # Set the site-wide default social media share image.
81
99
  social_media_share_image: /assets/images/social-media-image.png
82
100
  # Set the default favicon
@@ -15,14 +15,12 @@
15
15
  <th>Usage</th>
16
16
  </thead>
17
17
  <tbody>
18
+ {% for cookie in site.google_analytics.cookies.necessary %}
18
19
  <tr>
19
- <td>cookieControl</td>
20
- <td>This is used to control the display of the preferences pop up. Without this, we wouldn't know if you've clicked Accept!</td>
21
- </tr>
22
- <tr>
23
- <td>cookieControlPrefs</td>
24
- <td>This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!</td>
20
+ <td>{{cookie.name}}</td>
21
+ <td>{{cookie.description | markdownify}}</td>
25
22
  </tr>
23
+ {% endfor %}
26
24
  </tbody>
27
25
  </table>
28
26
  </div>
@@ -52,18 +50,12 @@
52
50
  <th>Usage</th>
53
51
  </thead>
54
52
  <tbody>
53
+ {% for cookie in site.google_analytics.cookies.marketing %}
55
54
  <tr>
56
- <td>_ga</td>
57
- <td>2 years Used to distinguish users.</td>
58
- </tr>
59
- <tr>
60
- <td>_gid</td>
61
- <td>24 hours Used to distinguish users.</td>
62
- </tr>
63
- <tr>
64
- <td>_gat</td>
65
- <td>1 minute Used to throttle request rate.</td>
55
+ <td>{{cookie.name}}</td>
56
+ <td>{{cookie.description | markdownify}}</td>
66
57
  </tr>
58
+ {% endfor %}
67
59
  </tbody>
68
60
  </table>
69
61
  </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.3
4
+ version: 6.0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby