jekyll-glass 0.2.4 → 0.3.0
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/_includes/header.html +1 -1
- data/_includes/social-item.html +3 -2
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_variables.scss +1 -2
- data/assets/css/main.scss +18 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07462a15fb986e1733192c678410f5433c3fc9f2fd420c9c0ed66ca09aa0d4e5
|
4
|
+
data.tar.gz: faa87dfeeaca831c35c5cf7bc4fd9210c7182274b8479769211497bcabc71917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 930f28297baf86273dfef51ca7f96d3c3d8d2a91615c7d81a8a618015303fe70650157048666d90d7fb0a2310c80aae16d8af19f2cf6792f1fb9c368b363cbd4
|
7
|
+
data.tar.gz: a17eb8e664ce9fb4dea942bb11f27ad162cbaf257daf57e8d4d7de06769a3a81eb73b3da8e52aa3c94d9163bc5f22bfcf83f15886910e43106c4094f08ad91ce
|
data/_includes/header.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="page-header" class="glass container">
|
2
|
-
<
|
2
|
+
<div id="site-title"><a href="{{ site.baseurl }}/index">{{ site.title }}</a></div>
|
3
3
|
{% if site.description %}
|
4
4
|
<p id="site-description">{{ site.description }}</p>
|
5
5
|
{% endif %}
|
data/_includes/social-item.html
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
<li>{% assign entry = include.item %}
|
2
|
-
<a {% unless entry.platform == 'rss' %}rel="me" {% endunless %}href="{{ entry.user_url }}" target="_blank" title="{{ entry.title | default: entry.platform }}">
|
3
|
-
|
2
|
+
<a class="social-item" {% unless entry.platform == 'rss' %}rel="me" {% endunless %}href="{{ entry.user_url }}" target="_blank" title="{{ entry.title | default: entry.platform }}">
|
3
|
+
<span class="social-icon fa-brands fa-{{ entry.platform | default: entry.title | downcase }}"></span>
|
4
|
+
{{ entry.title | default: entry.platform }}
|
4
5
|
</a>
|
5
6
|
</li>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/_variables.scss
CHANGED
@@ -3,8 +3,7 @@
|
|
3
3
|
$base-font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
|
4
4
|
"Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", Roboto, Helvetica,
|
5
5
|
Arial, sans-serif !default;
|
6
|
-
$code-font-family: "
|
7
|
-
"Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
6
|
+
$code-font-family: "Cascadia Code", "Cascadia Mono", monospace;
|
8
7
|
|
9
8
|
// https://coolors.co/1b2f33-28502e-47682c-8c7051-ef3054
|
10
9
|
$dark-color: #1b2f33ff !default; // Dark color used e.g. for the background
|
data/assets/css/main.scss
CHANGED
@@ -5,6 +5,9 @@
|
|
5
5
|
@import "custom";
|
6
6
|
@import "variables";
|
7
7
|
|
8
|
+
$fa-font-path: "../fonts/font-awesome";
|
9
|
+
@import 'font-awesome';
|
10
|
+
|
8
11
|
body {
|
9
12
|
font-family: $base-font-family;
|
10
13
|
color: $foreground-color;
|
@@ -47,10 +50,23 @@ h1 {
|
|
47
50
|
font-family: $code-font-family, monospace;
|
48
51
|
}
|
49
52
|
|
53
|
+
#site-title {
|
54
|
+
display: block;
|
55
|
+
font-size: 2em;
|
56
|
+
font-weight: bold;
|
57
|
+
margin-block: 0.67em;
|
58
|
+
font-family: $code-font-family, monospace;
|
59
|
+
}
|
60
|
+
|
61
|
+
|
50
62
|
.post-list-heading {
|
51
63
|
font-size: 26px;
|
52
64
|
}
|
53
65
|
|
66
|
+
.social-icon {
|
67
|
+
text-decoration: none;
|
68
|
+
}
|
69
|
+
|
54
70
|
code {
|
55
71
|
font-family: $code-font-family, monospace;
|
56
72
|
padding: 1px 3px 1px 3px;
|
@@ -133,3 +149,5 @@ body {
|
|
133
149
|
display: block;
|
134
150
|
}
|
135
151
|
}
|
152
|
+
|
153
|
+
@import "custom";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-glass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Linus Warnatz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.4.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-font-awesome-sass
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.1.1
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.1.1
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: bundler
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,7 +134,7 @@ files:
|
|
120
134
|
- _sass/_custom.scss
|
121
135
|
- _sass/_variables.scss
|
122
136
|
- assets/css/main.scss
|
123
|
-
homepage: https://
|
137
|
+
homepage: https://libewa.xyz/jekyll-glass
|
124
138
|
licenses:
|
125
139
|
- MIT
|
126
140
|
metadata: {}
|