jekyll-theme-tallneck 0.2.0 → 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 +3 -3
- data/_includes/head.html +12 -8
- data/_includes/header.html +1 -1
- data/assets/images/pwa_icon.svg +15 -0
- data/assets/images/pwa_icon_x128.png +0 -0
- data/assets/images/pwa_icon_x512.png +0 -0
- data/assets/images/pwa_icon_x96.png +0 -0
- data/assets/sitemanifest.json +28 -7
- metadata +10 -9
- data/assets/image/pwa_icon.svg +0 -13
- data/assets/image/pwa_icon_x512.png +0 -0
- data/assets/image/pwa_icon_x96.png +0 -0
- /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
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,10 +58,10 @@ 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
|
-
- `pwa_icon.svg`, `pwa_icon_x512.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)
|
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)
|
65
65
|
5. In the `assets` folder, create the sitemanifest.json file and edit it to your liking.
|
66
66
|
6. [Optional] Customize the theme by creating the `_sass` folder and editing `custom_variables.scss` and `custom_styles.scss` files.
|
67
67
|
7. Edit the `_config.yml` file to your liking (you can use the [config](/_config.yml) file in this repo as a template).
|
@@ -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
@@ -5,10 +5,7 @@
|
|
5
5
|
<meta content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0" name="viewport">
|
6
6
|
<meta content="#f0f0f0" media="(prefers-color-scheme: light)" name="theme-color">
|
7
7
|
<meta content="#252525" media="(prefers-color-scheme: dark)" name="theme-color">
|
8
|
-
<meta content="yes" name="apple-mobile-web-app-capable">
|
9
8
|
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
|
10
|
-
<link rel="manifest" href="/assets/sitemanifest.json">
|
11
|
-
<meta name="theme-color" content="#282828"/>
|
12
9
|
|
13
10
|
{% if page.private %}
|
14
11
|
<meta name="robots" content="noindex, nofollow">
|
@@ -23,9 +20,9 @@
|
|
23
20
|
{% endif %}
|
24
21
|
|
25
22
|
<!-- Preload -->
|
26
|
-
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans.woff2" | relative_url }}" type="font/woff2">
|
27
|
-
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans-bold.woff2" | relative_url }}" type="font/woff2">
|
28
|
-
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans-italic.woff2" | relative_url }}" type="font/woff2">
|
23
|
+
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans.woff2" | relative_url }}" type="font/woff2" crossOrigin="anonymous">
|
24
|
+
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans-bold.woff2" | relative_url }}" type="font/woff2" crossOrigin="anonymous">
|
25
|
+
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans-italic.woff2" | relative_url }}" type="font/woff2" crossOrigin="anonymous">
|
29
26
|
<link rel="preload" as="style" href="{{ "/assets/css/style.css" | relative_url }}">
|
30
27
|
<!--<link rel="preload" as="style" href="{{ "/assets/css/code.css" | relative_url }}">-->
|
31
28
|
|
@@ -35,8 +32,15 @@
|
|
35
32
|
<link rel="stylesheet" href="{{ "/assets/css/print.css" | relative_url }}" media="print" fetchpriority="low">
|
36
33
|
|
37
34
|
<!-- Favicon -->
|
38
|
-
<link rel="icon" href="{{ /assets/
|
39
|
-
<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
|
+
|
38
|
+
<!-- PWA -->
|
39
|
+
<meta name="theme-color" content="#282828"/>
|
40
|
+
<meta content="yes" name="apple-mobile-web-app-capable">
|
41
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
42
|
+
<link rel="manifest" href="/assets/sitemanifest.json">
|
43
|
+
<link rel="apple-touch-icon" sizes="512x512" href="/assets/images/pwa_icon_x512.png">
|
40
44
|
|
41
45
|
<!-- Analytics -->
|
42
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
|
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="background-color:#000" version="1.2" viewBox="0 0 250 250">
|
2
|
+
<defs>
|
3
|
+
<linearGradient id="a">
|
4
|
+
<stop offset=".2" stop-color="#6852ad"/>
|
5
|
+
<stop offset="1" stop-color="#fe7a36"/>
|
6
|
+
</linearGradient>
|
7
|
+
<linearGradient xlink:href="#a" id="b" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
|
8
|
+
<linearGradient xlink:href="#a" id="c" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
|
9
|
+
<linearGradient xlink:href="#a" id="d" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
|
10
|
+
</defs>
|
11
|
+
<g fill="url(#b)" stroke-width="1.5" font-size="288" font-weight="bold" transform="translate(20 20) scale(.83977)">
|
12
|
+
<path fill="url(#c)" d="M152.2 30.5v129.2q0 6.5-2 12.3-2 5.6-5.5 9.7-3.6 4.1-8.8 6.5-5 2.3-11.2 2.3-7.7 0-13-2-5.5-2-8.8-6.3-2.5-3.4-3.8-8.4-1.3-5-1.3-11.7H61.7q.1 14.5 4.7 25.2 4.6 10.8 13 17.8 8.2 7.2 19.7 10.8 11.5 3.6 25.6 3.6 13.3 0 24.8-4.4 11.7-4.3 20.2-12.3 8.6-7.9 13.5-18.8 5-11 5.1-24.3l-.1-129.2Z"/>
|
13
|
+
<path fill="url(#d)" d="M97.8 127.5a18 18 0 0 1-18 18 18 18 0 0 1-18.1-18 18 18 0 0 1 18-18 18 18 0 0 1 18 18z"/>
|
14
|
+
</g>
|
15
|
+
</svg>
|
Binary file
|
Binary file
|
Binary file
|
data/assets/sitemanifest.json
CHANGED
@@ -4,22 +4,43 @@
|
|
4
4
|
"lang": "en",
|
5
5
|
"description": "Preview for the theme Tallneck for Jeckyll.",
|
6
6
|
"categories": ["personalization", "utilities", "medical"],
|
7
|
-
"start_url": "/
|
7
|
+
"start_url": "/",
|
8
8
|
"icons": [
|
9
9
|
{
|
10
|
-
"src": "/assets/
|
10
|
+
"src": "/assets/images/pwa_icon.svg",
|
11
11
|
"sizes": "any",
|
12
|
-
"type": "image/svg+xml"
|
12
|
+
"type": "image/svg+xml",
|
13
|
+
"purpose": "any"
|
13
14
|
},
|
14
15
|
{
|
15
|
-
"src": "/assets/
|
16
|
+
"src": "/assets/images/logo.svg",
|
17
|
+
"sizes": "any",
|
18
|
+
"type": "image/svg+xml",
|
19
|
+
"purpose": "monochrome"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"src": "/assets/images/pwa_icon.svg",
|
23
|
+
"sizes": "any",
|
24
|
+
"type": "image/svg+xml",
|
25
|
+
"purpose": "maskable"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"src": "/assets/images/pwa_icon_x96.png",
|
16
29
|
"sizes": "96x96",
|
17
|
-
"type": "image/png"
|
30
|
+
"type": "image/png",
|
31
|
+
"purpose": "maskable"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"src": "/assets/images/pwa_icon_x128.png",
|
35
|
+
"sizes": "128x128",
|
36
|
+
"type": "image/png",
|
37
|
+
"purpose": "maskable"
|
18
38
|
},
|
19
39
|
{
|
20
|
-
"src": "/assets/
|
40
|
+
"src": "/assets/images/pwa_icon_x512.png",
|
21
41
|
"sizes": "512x512",
|
22
|
-
"type": "image/png"
|
42
|
+
"type": "image/png",
|
43
|
+
"purpose": "maskable"
|
23
44
|
}
|
24
45
|
],
|
25
46
|
"theme_color": "#282828",
|
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,14 +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/
|
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
|
158
159
|
- assets/sitemanifest.json
|
159
160
|
homepage: https://github.com/jotonedev/jekyll-theme-tallneck
|
160
161
|
licenses:
|
data/assets/image/pwa_icon.svg
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="background-color:#000" version="1.2" viewBox="0 0 250 250">
|
2
|
-
<defs>
|
3
|
-
<linearGradient id="a">
|
4
|
-
<stop offset=".2" stop-color="#6852ad"/>
|
5
|
-
<stop offset="1" stop-color="#fe7a36"/>
|
6
|
-
</linearGradient>
|
7
|
-
<linearGradient xlink:href="#a" id="b" x1="211.9" x2="139.8" y1="133.3" y2="160.4" gradientUnits="userSpaceOnUse"/>
|
8
|
-
</defs>
|
9
|
-
<g fill="url(#b)" stroke-width="1.5" font-size="288" font-weight="bold" transform="translate(16.7 16.7) scale(.86606)">
|
10
|
-
<path d="M152.2 30.5v129.2q0 6.5-2 12.3-2 5.6-5.5 9.7-3.6 4.1-8.8 6.5-5 2.3-11.2 2.3-7.7 0-13-2-5.5-2-8.8-6.3-2.5-3.4-3.8-8.4-1.3-5-1.3-11.7H61.7q.1 14.5 4.7 25.2 4.6 10.8 13 17.8 8.2 7.2 19.7 10.8 11.5 3.6 25.6 3.6 13.3 0 24.8-4.4 11.7-4.3 20.2-12.3 8.6-7.9 13.5-18.8 5-11 5.1-24.3l-.1-129.2Z"/>
|
11
|
-
<path d="M97.8 127.5a18 18 0 0 1-18 18 18 18 0 0 1-18.1-18 18 18 0 0 1 18-18 18 18 0 0 1 18 18z"/>
|
12
|
-
</g>
|
13
|
-
</svg>
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|