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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cfb4cc9353b6e3fb44ad2a3a9b5817a7ca609694f022083426af753bd9a69f9a
4
- data.tar.gz: 9b90a446e762ab3af4ab0c4fce223fda2f8feab7ff7291abcd2b3b83fc397868
3
+ metadata.gz: 07462a15fb986e1733192c678410f5433c3fc9f2fd420c9c0ed66ca09aa0d4e5
4
+ data.tar.gz: faa87dfeeaca831c35c5cf7bc4fd9210c7182274b8479769211497bcabc71917
5
5
  SHA512:
6
- metadata.gz: 174de13d6c12a8c245c998a36bf42298f2bb3260bf34a3eda6fbbae0ca37e58d3fc3490bd90684f556974c55f1f392525cdc6a248b3c6fa5798931bcac0cda61
7
- data.tar.gz: a9ba09d8c2d78b169028ff235d55a8855c546929a9c0c3586e51324771815bfc34e86474ede025c36c52266d7ff2c2e2a0759689bd6bc6599911f3ad4af8b6b2
6
+ metadata.gz: 930f28297baf86273dfef51ca7f96d3c3d8d2a91615c7d81a8a618015303fe70650157048666d90d7fb0a2310c80aae16d8af19f2cf6792f1fb9c368b363cbd4
7
+ data.tar.gz: a17eb8e664ce9fb4dea942bb11f27ad162cbaf257daf57e8d4d7de06769a3a81eb73b3da8e52aa3c94d9163bc5f22bfcf83f15886910e43106c4094f08ad91ce
@@ -1,5 +1,5 @@
1
1
  <div id="page-header" class="glass container">
2
- <h1 id="site-title"><a href="{{ site.baseurl }}/index">{{ site.title }}</a></h1>
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 %}
@@ -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
- {{ entry.title | default: entry.platform }}
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
@@ -2,6 +2,6 @@
2
2
  layout: base
3
3
  ---
4
4
  {% if site.show_page_titles != false and page.permalink != "/index" %}
5
- <h1>{{ page.title }}</h1>
5
+ <h1 class="page-title">{{ page.title }}</div>
6
6
  {% endif %}
7
7
  {{ content }}
data/_layouts/post.html CHANGED
@@ -2,6 +2,6 @@
2
2
  layout: base
3
3
  ---
4
4
  {% if site.show_page_titles != false %}
5
- <h1>{{ page.title }}</h1>
5
+ <h1 class="page-title">{{ page.title }}</div>
6
6
  {% endif %}
7
7
  {{ content }}
@@ -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: "Menlo", "Inconsolata", "Consolas", "Roboto Mono",
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.2.4
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: 2024-12-27 00:00:00.000000000 Z
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://github.com/libewa/jekyll-glass
137
+ homepage: https://libewa.xyz/jekyll-glass
124
138
  licenses:
125
139
  - MIT
126
140
  metadata: {}