jekyll-theme-tallneck 0.2.0 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb47d01ff8e5bf45a120f6617bb95c9de644b58fc3970c75120b9c511c17fc17
4
- data.tar.gz: a98286e504e2b6bfbfd661e286f2189f949afad060bf2e46a15048290e2b97a7
3
+ metadata.gz: 7317de0c2a5e949b4c4c37c61d61bebe6a992d07a840e3d194ad4d3bc390adf1
4
+ data.tar.gz: 1dc31c68accf10ef439cd94081ed4a08ff0077af622d7999a9f4d139aebfbad7
5
5
  SHA512:
6
- metadata.gz: ccee59c6bb3b672440eb1a8fe5da0ec4787e0c3858416a2a018773d3410df3e25591d994c74443189de1b5b7ba3d93c0ed4a866375c32f820f3e640ca6100c4f
7
- data.tar.gz: 9e8cb1ba3f0b432e2a10e325009867f2d276e71c82f3df0b6231f9f5bd128caf28d6b94394fc6991c3f63eccd44a96ce1a999a20147af09bde6dea72ab3c1cef
6
+ metadata.gz: 11b2f9e1aa44267b7a7b90890c362b78e1c30da689bc75e7c1f7e6f224fcb1e162a86d685e74795b86da3842d60104e3f8e5198f97d51ea69eaea52418b609b4
7
+ data.tar.gz: 7f3a423c2d3a87460377ebce809718717d8fc8bd4b10660e6c109e4d0e8c9dfa5f26f96d15065a725b708f387223f1b6ace9734083a9a56d1e07540be9406989
data/README.md CHANGED
@@ -61,7 +61,7 @@ theme: jekyll-theme-tallneck
61
61
  4. Create the `assets/image` 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).
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/image/favicon.ico | relative_url }}" sizes="any">
39
35
  <link rel="icon" href="{{ /assets/image/favicon.svg | relative_url }}" type="image/svg+xml">
36
+ <link rel="icon" href="{{ /assets/image/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/image/pwa_icon_x512.png">
40
44
 
41
45
  <!-- Analytics -->
42
46
  {% if site.cloudflare %}
@@ -5,9 +5,11 @@
5
5
  <stop offset="1" stop-color="#fe7a36"/>
6
6
  </linearGradient>
7
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"/>
8
10
  </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"/>
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"/>
12
14
  </g>
13
15
  </svg>
Binary file
Binary file
Binary file
@@ -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": "/tallneck-test",
7
+ "start_url": "/",
8
8
  "icons": [
9
9
  {
10
10
  "src": "/assets/image/pwa_icon.svg",
11
11
  "sizes": "any",
12
- "type": "image/svg+xml"
12
+ "type": "image/svg+xml",
13
+ "purpose": "any"
14
+ },
15
+ {
16
+ "src": "/assets/image/logo.svg",
17
+ "sizes": "any",
18
+ "type": "image/svg+xml",
19
+ "purpose": "monochrome"
20
+ },
21
+ {
22
+ "src": "/assets/image/pwa_icon.svg",
23
+ "sizes": "any",
24
+ "type": "image/svg+xml",
25
+ "purpose": "maskable"
13
26
  },
14
27
  {
15
28
  "src": "/assets/image/pwa_icon_x96.png",
16
29
  "sizes": "96x96",
17
- "type": "image/png"
30
+ "type": "image/png",
31
+ "purpose": "maskable"
32
+ },
33
+ {
34
+ "src": "/assets/image/pwa_icon_x128.png",
35
+ "sizes": "128x128",
36
+ "type": "image/png",
37
+ "purpose": "maskable"
18
38
  },
19
39
  {
20
40
  "src": "/assets/image/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.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Toniutti
@@ -153,6 +153,7 @@ files:
153
153
  - assets/image/favicon.svg
154
154
  - assets/image/logo.svg
155
155
  - assets/image/pwa_icon.svg
156
+ - assets/image/pwa_icon_x128.png
156
157
  - assets/image/pwa_icon_x512.png
157
158
  - assets/image/pwa_icon_x96.png
158
159
  - assets/sitemanifest.json