type-on-strap 2.4.4 → 2.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/_layouts/categories.liquid +38 -0
- data/_layouts/default.html +1 -1
- data/_sass/layouts/_categories.scss +87 -0
- data/_sass/type-on-strap.scss +1 -0
- data/assets/js/main.min.js +5 -1
- data/assets/js/vendor/mermaid.min.js +1588 -2
- data/assets/js/vendor/simple-jekyll-search.min.js +1 -1
- metadata +12 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59ac223fb0f31b7759001250d368dc5f60f777f5230a654a91e622e86119778f
|
|
4
|
+
data.tar.gz: de7216c62581d2d226e80379fe232c85c916e3f91768dbe15a935f10eb69137e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e762537afcd2650b819616d71a90fb0330a6bc171c4024a598889774912db2e7629f657c6822d37e3f2d249ac3d047478e004fc6ecab73d53de3b34f562e364
|
|
7
|
+
data.tar.gz: c2cc08a7b40dde40c2a66101202d45c429fe27fa8c74c9d6ac95b0c6ee269ec76f7399bd56dc905437cc7b6071b9de4921feb5cf9d8b018aeefe98a5a5eb0490
|
data/LICENSE
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<div class="home">
|
|
6
|
+
<div id="categories">
|
|
7
|
+
<section class="bg"></section>
|
|
8
|
+
<ul class="category-clouds">
|
|
9
|
+
{% for category in site.categories %}
|
|
10
|
+
<a href="#{{ category | first | cgi_escape }}" class="category-anchor">
|
|
11
|
+
<li>
|
|
12
|
+
{{ category | first }}
|
|
13
|
+
<!-- {{ category | last | size | times: 100 | divided_by: site.tags.size | plus: 50 | divided_by: 100.0 }} -->
|
|
14
|
+
<!-- <span class="category-number">{{ category | last | size }}</span> -->
|
|
15
|
+
</li>
|
|
16
|
+
</a>
|
|
17
|
+
{% endfor %}
|
|
18
|
+
</ul>
|
|
19
|
+
<div class="category-groups">
|
|
20
|
+
{% for category in site.categories %}
|
|
21
|
+
<div class="category-group">
|
|
22
|
+
{% capture group %}{{ category | first }}{% endcapture %}
|
|
23
|
+
<h4 id="{{ group }}" class="title">{{ group }}</h4>
|
|
24
|
+
<div class="items">
|
|
25
|
+
{% for post in site.categories[group] %}
|
|
26
|
+
<a href="{{ post.url | relative_url }}" class="category-post-link">
|
|
27
|
+
<div class="item">
|
|
28
|
+
<p class="meta">{{ post.date | date: "%B %-d, %Y" }}</p>
|
|
29
|
+
<p class="title">{{ post.title }}</p>
|
|
30
|
+
</div>
|
|
31
|
+
</a>
|
|
32
|
+
{% endfor %}
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
{% endfor %}
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
data/_layouts/default.html
CHANGED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
#categories {
|
|
2
|
+
.category-clouds {
|
|
3
|
+
margin: 30px 0 30px;
|
|
4
|
+
|
|
5
|
+
li {
|
|
6
|
+
background-color: var(--link);
|
|
7
|
+
display: inline-block;
|
|
8
|
+
margin-bottom: 10px;
|
|
9
|
+
margin-right: 3px;
|
|
10
|
+
padding: 0 15px;
|
|
11
|
+
border-radius: 20px;
|
|
12
|
+
color: var(--header-text);
|
|
13
|
+
font-weight: 600;
|
|
14
|
+
font-size: 0.8rem;
|
|
15
|
+
line-height: 35px;
|
|
16
|
+
letter-spacing: -0.03rem;
|
|
17
|
+
|
|
18
|
+
.category-number {
|
|
19
|
+
vertical-align: super;
|
|
20
|
+
font-size: 0.625rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p {
|
|
24
|
+
opacity: 1;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
li:hover {
|
|
29
|
+
background-color: var(--header-background) !important;
|
|
30
|
+
color: var(--header-text);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.category-anchor:hover {
|
|
34
|
+
text-decoration: none !important;
|
|
35
|
+
filter: none;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.category-group {
|
|
40
|
+
padding: 15px 0 10px;
|
|
41
|
+
|
|
42
|
+
.title {
|
|
43
|
+
margin-bottom: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.items {
|
|
47
|
+
padding-left: $padding-medium;
|
|
48
|
+
|
|
49
|
+
.item {
|
|
50
|
+
position: relative;
|
|
51
|
+
margin: 25px 0;
|
|
52
|
+
|
|
53
|
+
.meta {
|
|
54
|
+
color: var(--meta);
|
|
55
|
+
font-size: 0.85rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.title {
|
|
59
|
+
font-weight: 600;
|
|
60
|
+
color: var(--text);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.item::before {
|
|
65
|
+
content: "";
|
|
66
|
+
position: absolute;
|
|
67
|
+
left: -5%;
|
|
68
|
+
width: 8px;
|
|
69
|
+
background-color: var(--selection);
|
|
70
|
+
border-radius: 8px;
|
|
71
|
+
height: 100%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.category-post-link:hover {
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
|
|
77
|
+
.meta, .title {
|
|
78
|
+
color: var(--header-background);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.item::before {
|
|
82
|
+
background-color: var(--link);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
data/_sass/type-on-strap.scss
CHANGED
data/assets/js/main.min.js
CHANGED
|
@@ -1 +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()
|
|
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
|
+
/* @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")}))}));
|