type-on-strap 2.4.5 → 2.4.6

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: 59ac223fb0f31b7759001250d368dc5f60f777f5230a654a91e622e86119778f
4
- data.tar.gz: de7216c62581d2d226e80379fe232c85c916e3f91768dbe15a935f10eb69137e
3
+ metadata.gz: 5ace9770fb50b11260a1db0d08ebe8ed2c4449d2fcb2d395366182842f84171f
4
+ data.tar.gz: 108a885ba09192f3fbdb8211ba66430503bd1b552764ee90ab1654381891d002
5
5
  SHA512:
6
- metadata.gz: 6e762537afcd2650b819616d71a90fb0330a6bc171c4024a598889774912db2e7629f657c6822d37e3f2d249ac3d047478e004fc6ecab73d53de3b34f562e364
7
- data.tar.gz: c2cc08a7b40dde40c2a66101202d45c429fe27fa8c74c9d6ac95b0c6ee269ec76f7399bd56dc905437cc7b6071b9de4921feb5cf9d8b018aeefe98a5a5eb0490
6
+ metadata.gz: 0c3017dd0c517f2089252307095e838b557be3418941cb92908f439693bd1b7668fa6b8dd9fc3e587d5c63bc63d1ed45a379ad0fdf9c513b194cdbdac187c58c
7
+ data.tar.gz: 14f34def7f989e3d753ba045e939c9824037d39b8a08e93cb337c3b5318ba6ccb774c4350e5ad1ad7a3e2a64971073c2a98575a9ebb16dd3c24a9a7bfe4346fb
data/README.md CHANGED
@@ -168,13 +168,15 @@ By default, it is in english, but you can easily add your own language.
168
168
 
169
169
  ### Google Analytics
170
170
 
171
- To enable Google Analytics, add your [tracking ID](https://support.google.com/analytics/answer/1032385)
171
+ To enable Google Analytics (GA4), add your [Measurement ID](https://support.google.com/analytics/answer/12270356?hl=en&sjid=1593376271608310401-NA)
172
172
  to `_config.yml` like so:
173
173
 
174
174
  ```yml
175
- google_analytics: UA-NNNNNNNN-N
175
+ google_analytics: G-XXXXXXXXXX
176
176
  ```
177
177
 
178
+ It will use the [Google Tag Manager](https://support.google.com/analytics/answer/10220869?hl=en&ref_topic=9355633&sjid=1593376271608310401-NA)
179
+
178
180
  ### Comments 💬
179
181
 
180
182
  #### Disqus
@@ -4,7 +4,7 @@
4
4
  <div class="post-info">
5
5
  {%- if author.url -%}<a href="{{ author.url | relative_url }}" target="_blank" rel="noopener">{%- endif -%}
6
6
  {% if author.avatar %}
7
- <img alt="Author's avatar" src="{{ author.avatar | relative_url }}">
7
+ <img alt="Author's avatar" src="{{ author.avatar | relative_url }}" loading="lazy">
8
8
  {% endif %}
9
9
  <p class="meta">
10
10
  {% if author.name %}{{ author.name }} - {% endif %}
@@ -68,8 +68,6 @@
68
68
  {% if site.google_analytics %}
69
69
  <!-- Global site tag (gtag.js) -->
70
70
  <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
71
- <!-- Page analysis (analytics.js) -->
72
- <script async src='https://www.google-analytics.com/analytics.js'></script>
73
71
  {% endif %}
74
72
 
75
73
  <!-- seo tags -->
@@ -4,7 +4,7 @@
4
4
  <div class="branding">
5
5
  {% if site.avatar %}
6
6
  <a href="{{ '/' | relative_url }}">
7
- <img alt="logo img" class="avatar" src="{{ site.avatar | relative_url }}" />
7
+ <img alt="logo img" class="avatar" src="{{ site.avatar | relative_url }}" loading="lazy"/>
8
8
  </a>
9
9
  {% endif %}
10
10
  <a class="site-title" aria-label="{{ site.title }}" href="{{ '/' | relative_url }}">
@@ -34,7 +34,7 @@
34
34
  {% endunless %}
35
35
  {% assign name_page = page.title | append: name_page %}
36
36
  {% endfor %}
37
-
37
+
38
38
  {% if site.color_theme == 'auto' %}
39
39
  <li class="separator"> | </li>
40
40
  <li><a id="theme-toggle" title="{{ page.title }} " aria-label="{{ page.title }}" onclick="themeToggle()"></a></li>
@@ -10,4 +10,4 @@
10
10
  {% if site.data.language.cusdis_lang %}
11
11
  <script defer src="https://cusdis.com/js/widget/lang/{{ site.data.language.cusdis_lang }}.js"></script>
12
12
  {% endif %}
13
- <script async src="https://cusdis.com/js/cusdis.es.js"></script>
13
+ <script defer src="https://cusdis.com/js/cusdis.es.js"></script>
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Type on Strap jekyll theme v2.4.5
3
+ Type on Strap jekyll theme v2.4.6
4
4
  Theme free for personal and commercial use under the MIT license
5
5
  https://github.com/sylhare/Type-on-Strap/blob/master/LICENSE
6
6
  -->
@@ -186,6 +186,7 @@ p,
186
186
  ol,
187
187
  ul,
188
188
  dl,
189
+ details,
189
190
  .math-display {
190
191
  line-height: 1.5;
191
192
  margin-bottom: 1em;
@@ -237,6 +238,17 @@ kbd {
237
238
  white-space: nowrap;
238
239
  }
239
240
 
241
+ details {
242
+ & > summary {
243
+ cursor: pointer;
244
+ display: list-item;
245
+ }
246
+
247
+ &[open] > summary {
248
+ color: var(--link);
249
+ }
250
+ }
251
+
240
252
  // Cookie consent
241
253
  #cookie-notice {
242
254
  padding: 0.5rem 1rem;
@@ -270,3 +282,4 @@ kbd {
270
282
  max-width: 100%;
271
283
  }
272
284
  }
285
+
@@ -1,5 +1,5 @@
1
1
  /* @preserve Cookie Consent Init */
2
- function createCookie(e,t,n){var o="";if(n){var i=new Date;i.setTime(i.getTime()+24*n*60*60*1e3),o="; expires="+i.toUTCString()}document.cookie=`${e}=${t}${o}; path=/`}function readCookie(e){for(var t=e+"=",n=document.cookie.split(";"),o=0;o<n.length;o++){for(var i=n[o];" "===i.charAt(0);)i=i.substring(1,i.length);if(0===i.indexOf(t))return i.substring(t.length,i.length)}return null}function addCookieConsentListener(){document.getElementById("cookie-notice-accept").addEventListener("click",(function(){createCookie(cookieName,"true",31),document.getElementById("cookie-notice").style.display="none",location.reload()}))}function googleAnalytics(){if(""!==analyticsName.toLowerCase()){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config",analyticsName),e("config",analyticsNameGA4,{anonymize_ip:!0}),window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)},ga.l=+new Date,ga("create",analyticsName,"auto"),ga("send","pageview")}}"true"===isCookieConsent.toLowerCase()?(addCookieConsentListener(),"true"===readCookie(cookieName)?googleAnalytics():document.getElementById("cookie-notice").style.display="block"):googleAnalytics()
2
+ function createCookie(e,t,o){var n="";if(o){var i=new Date;i.setTime(i.getTime()+24*o*60*60*1e3),n="; expires="+i.toUTCString()}document.cookie=`${e}=${t}${n}; path=/`}function readCookie(e){for(var t=e+"=",o=document.cookie.split(";"),n=0;n<o.length;n++){for(var i=o[n];" "===i.charAt(0);)i=i.substring(1,i.length);if(0===i.indexOf(t))return i.substring(t.length,i.length)}return null}function addCookieConsentListener(){document.getElementById("cookie-notice-accept").addEventListener("click",(function(){createCookie(cookieName,"true",31),document.getElementById("cookie-notice").style.display="none",location.reload()}))}function googleAnalytics(){if(""!==analyticsName.toLowerCase()){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config",analyticsName,{anonymize_ip:!0}),analyticsNameGA4&&e("config",analyticsNameGA4,{anonymize_ip:!0})}}"true"===isCookieConsent.toLowerCase()?(addCookieConsentListener(),"true"===readCookie(cookieName)?googleAnalytics():document.getElementById("cookie-notice").style.display="block"):googleAnalytics()
3
3
  /* @preserve Dark mode Init */;const themeButton={light:'<i class="fas fa-adjust" aria-hidden="true"></i>',dark:'<i class="fas fa-adjust fa-rotate-180" aria-hidden="true"></i>'},currentTheme=()=>sessionStorage.getItem("theme");function setMode(e){document.documentElement.setAttribute("data-theme",e),sessionStorage.setItem("theme",e);const t=document.getElementById("theme-toggle");t&&(t.innerHTML=themeButton[e])}function themeToggle(){setMode("light"===currentTheme()?"dark":"light")}window.onload=function(){if(isAutoTheme){if(!currentTheme()){let e=window.matchMedia("(prefers-color-scheme: dark)");e.addEventListener("change",(()=>{e.matches&&sessionStorage.setItem("theme","dark")}))}let e=currentTheme();setMode(e||"light")}}
4
4
  /* @preserve Masonry Init */;try{var elem=document.querySelector(".grid"),msnry=new Masonry(elem,{itemSelector:".grid-item",columnWidth:".grid-sizer",gutter:".gutter-sizer",percentPosition:!0}),imgLoad=imagesLoaded(elem);imgLoad.on("progress",(function(e,t){msnry.layout()}))}catch(e){if(!(e instanceof ReferenceError))throw e}
5
- /* @preserve Navbar */document.addEventListener("DOMContentLoaded",(function(e){const t=document.getElementById("pull"),n=document.querySelector("nav ul");["click","touch"].forEach((function(e){t?.addEventListener(e,(function(){n.classList.toggle("hide")}),!1)})),window.addEventListener("scroll",(function(){const e=-(window.scrollY||window.pageYOffset||document.body.scrollTop)/3,t=document.getElementById("main");t&&(t.style.backgroundPosition="100% "+(e-50)+"px, 0%, center top")}))}));
5
+ /* @preserve Navbar */document.addEventListener("DOMContentLoaded",(function(e){const t=document.getElementById("pull"),o=document.querySelector("nav ul");["click","touch"].forEach((function(e){t?.addEventListener(e,(function(){o.classList.toggle("hide")}),!1)})),window.addEventListener("scroll",(function(){const e=-(window.scrollY||window.pageYOffset||document.body.scrollTop)/3,t=document.getElementById("main");t&&(t.style.backgroundPosition="100% "+(e-50)+"px, 0%, center top")}))}));
@@ -34,23 +34,19 @@ function googleAnalytics() {
34
34
  window.dataLayer = window.dataLayer || [];
35
35
  function gtag() { dataLayer.push(arguments); }
36
36
  gtag('js', new Date());
37
- gtag('config', analyticsName);
38
- gtag('config', analyticsNameGA4, { 'anonymize_ip': true });
39
-
40
- // Google analytics
41
- window.ga = window.ga || function () { (ga.q = ga.q || []).push(arguments) };
42
- ga.l = +new Date;
43
- ga('create', analyticsName, 'auto');
44
- ga('send', 'pageview');
37
+ gtag('config', analyticsName, { 'anonymize_ip': true });
38
+ if (analyticsNameGA4) {
39
+ gtag('config', analyticsNameGA4, { 'anonymize_ip': true });
40
+ }
45
41
  }
46
42
  }
47
43
 
48
44
  if (isCookieConsent.toLowerCase() === 'true') {
49
45
  addCookieConsentListener();
50
46
  if (readCookie(cookieName) === 'true') {
51
- googleAnalytics();
47
+ googleAnalytics();
52
48
  } else {
53
- document.getElementById('cookie-notice').style.display = 'block';
49
+ document.getElementById('cookie-notice').style.display = 'block';
54
50
  }
55
51
  } else {
56
52
  googleAnalytics();
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type-on-strap
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.5
4
+ version: 2.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylhare
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-03-07 00:00:00.000000000 Z
12
+ date: 2023-07-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -290,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
290
290
  - !ruby/object:Gem::Version
291
291
  version: '0'
292
292
  requirements: []
293
- rubygems_version: 3.3.26
293
+ rubygems_version: 3.3.3
294
294
  signing_key:
295
295
  specification_version: 4
296
296
  summary: A simple and responsive jekyll theme template