jekyll-theme-tallneck 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/_includes/head.html +3 -3
- data/_includes/header.html +1 -1
- data/assets/sitemanifest.json +6 -6
- metadata +10 -10
- /data/assets/{image → images}/about.webp +0 -0
- /data/assets/{image → images}/default.webp +0 -0
- /data/assets/{image → images}/favicon.ico +0 -0
- /data/assets/{image → images}/favicon.svg +0 -0
- /data/assets/{image → images}/logo.svg +0 -0
- /data/assets/{image → images}/pwa_icon.svg +0 -0
- /data/assets/{image → images}/pwa_icon_x128.png +0 -0
- /data/assets/{image → images}/pwa_icon_x512.png +0 -0
- /data/assets/{image → images}/pwa_icon_x96.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9570e0d74bf82ea1adb5c7eaba51bd99af50f70fae652b564e4b88d0a825dff
|
4
|
+
data.tar.gz: 9b4da22a5aeaa959acf048613149681762a8cf6cb0a0d06c3a1e93bcba2bb499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c413e4065bb08acd61376b283735fd753726f80132429f7ba3cb6cf655de3daa70b7cc750be40af5c3af63c81abac1ffddf175c68f6a0494a013b4bf73c06d8
|
7
|
+
data.tar.gz: 27aa744fd453c04d5f3c6e499022b7e5f2b76ae034ee19badf14a5a13e771b787ddf031c05c00fc2aad6b383328c00599588daf3b56d973b96972747e08fcaf8
|
data/README.md
CHANGED
@@ -58,7 +58,7 @@ theme: jekyll-theme-tallneck
|
|
58
58
|
- [privacy.md](privacy.md)
|
59
59
|
- [terms.md](terms.md)
|
60
60
|
|
61
|
-
4. Create the `assets/
|
61
|
+
4. Create the `assets/images` folder and put a replacement for the following images:
|
62
62
|
- `favicon.ico` and `favicon.svg` that will be used as the favicon.
|
63
63
|
- `logo.svg` that will be used as the home button.
|
64
64
|
- `pwa_icon.svg`, `pwa_icon_x512.png`, `pwa_icon_x128.png`, `pwa_icon_x96.png` that will be used as the PWA icon. ([https://maskable.app/editor](https://maskable.app/editor) can be used to create the maskable icon)
|
@@ -77,7 +77,7 @@ layout: post # Optional, post is default
|
|
77
77
|
title: "First post!"
|
78
78
|
subtitle: "Written in Go." # Optional
|
79
79
|
date: 2023-01-16 17:40:28 +0100
|
80
|
-
image: /assets/
|
80
|
+
image: /assets/images/golang.jpg # Optional
|
81
81
|
---
|
82
82
|
```
|
83
83
|
|
data/_includes/head.html
CHANGED
@@ -32,15 +32,15 @@
|
|
32
32
|
<link rel="stylesheet" href="{{ "/assets/css/print.css" | relative_url }}" media="print" fetchpriority="low">
|
33
33
|
|
34
34
|
<!-- Favicon -->
|
35
|
-
<link rel="icon" href="{{ /assets/
|
36
|
-
<link rel="icon" href="{{ /assets/
|
35
|
+
<link rel="icon" href="{{ /assets/images/favicon.svg | relative_url }}" type="image/svg+xml">
|
36
|
+
<link rel="icon" href="{{ /assets/images/favicon.ico | relative_url }}" sizes="any">
|
37
37
|
|
38
38
|
<!-- PWA -->
|
39
39
|
<meta name="theme-color" content="#282828"/>
|
40
40
|
<meta content="yes" name="apple-mobile-web-app-capable">
|
41
41
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
42
42
|
<link rel="manifest" href="/assets/sitemanifest.json">
|
43
|
-
<link rel="apple-touch-icon" sizes="512x512" href="/assets/
|
43
|
+
<link rel="apple-touch-icon" sizes="512x512" href="/assets/images/pwa_icon_x512.png">
|
44
44
|
|
45
45
|
<!-- Analytics -->
|
46
46
|
{% if site.cloudflare %}
|
data/_includes/header.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="page-header--container">
|
3
3
|
<div class="header-logo">
|
4
4
|
<a aria-label="Home" href="{{ '/' | relative_url }}">
|
5
|
-
<img alt="Website logo" src="{{ '/assets/
|
5
|
+
<img alt="Website logo" src="{{ '/assets/images/logo.svg' | relative_url }}" loading="eager" width="37px" height="37px">
|
6
6
|
</a>
|
7
7
|
</div>
|
8
8
|
|
data/assets/sitemanifest.json
CHANGED
@@ -7,37 +7,37 @@
|
|
7
7
|
"start_url": "/",
|
8
8
|
"icons": [
|
9
9
|
{
|
10
|
-
"src": "/assets/
|
10
|
+
"src": "/assets/images/pwa_icon.svg",
|
11
11
|
"sizes": "any",
|
12
12
|
"type": "image/svg+xml",
|
13
13
|
"purpose": "any"
|
14
14
|
},
|
15
15
|
{
|
16
|
-
"src": "/assets/
|
16
|
+
"src": "/assets/images/logo.svg",
|
17
17
|
"sizes": "any",
|
18
18
|
"type": "image/svg+xml",
|
19
19
|
"purpose": "monochrome"
|
20
20
|
},
|
21
21
|
{
|
22
|
-
"src": "/assets/
|
22
|
+
"src": "/assets/images/pwa_icon.svg",
|
23
23
|
"sizes": "any",
|
24
24
|
"type": "image/svg+xml",
|
25
25
|
"purpose": "maskable"
|
26
26
|
},
|
27
27
|
{
|
28
|
-
"src": "/assets/
|
28
|
+
"src": "/assets/images/pwa_icon_x96.png",
|
29
29
|
"sizes": "96x96",
|
30
30
|
"type": "image/png",
|
31
31
|
"purpose": "maskable"
|
32
32
|
},
|
33
33
|
{
|
34
|
-
"src": "/assets/
|
34
|
+
"src": "/assets/images/pwa_icon_x128.png",
|
35
35
|
"sizes": "128x128",
|
36
36
|
"type": "image/png",
|
37
37
|
"purpose": "maskable"
|
38
38
|
},
|
39
39
|
{
|
40
|
-
"src": "/assets/
|
40
|
+
"src": "/assets/images/pwa_icon_x512.png",
|
41
41
|
"sizes": "512x512",
|
42
42
|
"type": "image/png",
|
43
43
|
"purpose": "maskable"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-tallneck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Toniutti
|
@@ -147,15 +147,15 @@ files:
|
|
147
147
|
- assets/icon/telegram.svg
|
148
148
|
- assets/icon/threads.svg
|
149
149
|
- assets/icon/x.svg
|
150
|
-
- assets/
|
151
|
-
- assets/
|
152
|
-
- assets/
|
153
|
-
- assets/
|
154
|
-
- assets/
|
155
|
-
- assets/
|
156
|
-
- assets/
|
157
|
-
- assets/
|
158
|
-
- assets/
|
150
|
+
- assets/images/about.webp
|
151
|
+
- assets/images/default.webp
|
152
|
+
- assets/images/favicon.ico
|
153
|
+
- assets/images/favicon.svg
|
154
|
+
- assets/images/logo.svg
|
155
|
+
- assets/images/pwa_icon.svg
|
156
|
+
- assets/images/pwa_icon_x128.png
|
157
|
+
- assets/images/pwa_icon_x512.png
|
158
|
+
- assets/images/pwa_icon_x96.png
|
159
159
|
- assets/sitemanifest.json
|
160
160
|
homepage: https://github.com/jotonedev/jekyll-theme-tallneck
|
161
161
|
licenses:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|