jekyll-theme-tallneck 0.3.4 → 0.3.6
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/head.html +0 -1
- data/_includes/post-card.html +1 -1
- data/_layouts/about.html +20 -20
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd9a1d10192ddfef76f90ee0c5dea9c39606bcdebcfd4d24d663d2f756a391ee
|
|
4
|
+
data.tar.gz: 2dfbc662afb40604eda1e80cd6d0f0f5d2f25b7e0e57028144fcd4925f2e77cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7886e519f1d2e619ca5f4b04bfe9d98332ac9779ff7f5b6cdb2c977e349ecf481175a259ba360ac67e0bdf5102b248f654b0c301c5b575ce0b7ab1e2247a97d6
|
|
7
|
+
data.tar.gz: 7ca2028db3d4086bd745375ec89f2206dfb59c4be6734c7174cd54c9d7764bf7b5727733db645672e03ec0b2abd3434054d77a173932e05526ab156f943d18bf
|
data/_includes/head.html
CHANGED
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
<link rel="icon" href="{{ /assets/images/favicon.ico | relative_url }}" sizes="any">
|
|
40
40
|
|
|
41
41
|
<!-- PWA -->
|
|
42
|
-
<meta name="theme-color" content="#282828"/>
|
|
43
42
|
<meta name="mobile-web-app-capable" content="yes">
|
|
44
43
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
45
44
|
<link rel="manifest" href="/assets/sitemanifest.json">
|
data/_includes/post-card.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<article class="post-card" id="{{ include.post.id }}">
|
|
2
2
|
<a href="{{ include.post.url | relative_url }}" class="post-card--link post-card--flex">
|
|
3
3
|
<div class="post-card--image">
|
|
4
|
-
<img src="{{ include.post.image | relative_url }}" alt="{{ include.post.title }}" aria-hidden="true" width="900" height="640">
|
|
4
|
+
<img src="{{ include.post.image | relative_url }}" alt="{{ include.post.title }}" aria-hidden="true" width="900" height="640" loading="lazy">
|
|
5
5
|
</div>
|
|
6
6
|
<div class="post-card--content">
|
|
7
7
|
<h2 class="post-card--title">{{ include.post.title }}</h2>
|
data/_layouts/about.html
CHANGED
|
@@ -10,86 +10,86 @@ layout: base
|
|
|
10
10
|
|
|
11
11
|
<nav class="about-social no_print">
|
|
12
12
|
{% if site.github_url %}
|
|
13
|
-
<a href="{{ site.github_url }}" title="GitHub" target="_blank" rel="noopener">
|
|
13
|
+
<a href="{{ site.github_url }}" title="GitHub" aria-label="GitHub" target="_blank" rel="noopener">
|
|
14
14
|
<svg class="about-social--icon">
|
|
15
|
-
<use href="{{ "/assets/icons/github.svg#github" | relative_url }}"
|
|
15
|
+
<use href="{{ "/assets/icons/github.svg#github" | relative_url }}"></use>
|
|
16
16
|
</svg>
|
|
17
17
|
</a>
|
|
18
18
|
{% endif %}
|
|
19
19
|
|
|
20
20
|
{% if site.gitlab_url %}
|
|
21
|
-
<a href="{{ site.gitlab_url }}" title="GitLab" target="_blank" rel="noopener">
|
|
21
|
+
<a href="{{ site.gitlab_url }}" title="GitLab" aria-label="GitLab" target="_blank" rel="noopener">
|
|
22
22
|
<svg class="about-social--icon">
|
|
23
|
-
<use href="{{ "/assets/icons/gitlab.svg#gitlab" | relative_url }}"
|
|
23
|
+
<use href="{{ "/assets/icons/gitlab.svg#gitlab" | relative_url }}"></use>
|
|
24
24
|
</svg>
|
|
25
25
|
</a>
|
|
26
26
|
{% endif %}
|
|
27
27
|
|
|
28
28
|
{% if site.discord_url %}
|
|
29
|
-
<a href="{{ site.discord_url }}" title="Discord" target="_blank" rel="noopener">
|
|
29
|
+
<a href="{{ site.discord_url }}" title="Discord" aria-label="Discord" target="_blank" rel="noopener">
|
|
30
30
|
<svg class="about-social--icon">
|
|
31
|
-
<use href="{{ "/assets/icons/discord.svg#discord" | relative_url }}"
|
|
31
|
+
<use href="{{ "/assets/icons/discord.svg#discord" | relative_url }}"></use>
|
|
32
32
|
</svg>
|
|
33
33
|
</a>
|
|
34
34
|
{% endif %}
|
|
35
35
|
|
|
36
36
|
{% if site.reddit_url %}
|
|
37
|
-
<a href="{{ site.reddit_url }}" title="Reddit" target="_blank" rel="noopener">
|
|
37
|
+
<a href="{{ site.reddit_url }}" title="Reddit" aria-label="Reddit" target="_blank" rel="noopener">
|
|
38
38
|
<svg class="about-social--icon">
|
|
39
|
-
<use href="{{ "/assets/icons/reddit.svg#reddit" | relative_url }}"
|
|
39
|
+
<use href="{{ "/assets/icons/reddit.svg#reddit" | relative_url }}"></use>
|
|
40
40
|
</svg>
|
|
41
41
|
</a>
|
|
42
42
|
{% endif %}
|
|
43
43
|
|
|
44
44
|
{% if site.instagram_url %}
|
|
45
|
-
<a href="{{ site.instagram_url }}" title="Instagram" target="_blank" rel="noopener">
|
|
45
|
+
<a href="{{ site.instagram_url }}" title="Instagram" aria-label="Instagram" target="_blank" rel="noopener">
|
|
46
46
|
<svg class="about-social--icon">
|
|
47
|
-
<use href="{{ "/assets/icons/instagram.svg#instagram" | relative_url }}"
|
|
47
|
+
<use href="{{ "/assets/icons/instagram.svg#instagram" | relative_url }}">
|
|
48
48
|
</use>
|
|
49
49
|
</svg>
|
|
50
50
|
</a>
|
|
51
51
|
{% endif %}
|
|
52
52
|
|
|
53
53
|
{% if site.linkedin_url %}
|
|
54
|
-
<a href="{{ site.linkedin_url }}" title="LinkedIn" target="_blank" rel="noopener">
|
|
54
|
+
<a href="{{ site.linkedin_url }}" title="LinkedIn" aria-label="LinkedIn" target="_blank" rel="noopener">
|
|
55
55
|
<svg class="about-social--icon">
|
|
56
|
-
<use href="{{ "/assets/icons/linkedin.svg#linkedin" | relative_url }}"
|
|
56
|
+
<use href="{{ "/assets/icons/linkedin.svg#linkedin" | relative_url }}">
|
|
57
57
|
</use>
|
|
58
58
|
</svg>
|
|
59
59
|
</a>
|
|
60
60
|
{% endif %}
|
|
61
61
|
|
|
62
62
|
{% if site.threads_url %}
|
|
63
|
-
<a href="{{ site.threads_url }}" title="Threads" target="_blank" rel="noopener">
|
|
63
|
+
<a href="{{ site.threads_url }}" title="Threads" aria-label="Threads" target="_blank" rel="noopener">
|
|
64
64
|
<svg class="about-social--icon">
|
|
65
|
-
<use href="{{ "/assets/icons/threads.svg#threads" | relative_url }}"
|
|
65
|
+
<use href="{{ "/assets/icons/threads.svg#threads" | relative_url }}">
|
|
66
66
|
</use>
|
|
67
67
|
</svg>
|
|
68
68
|
</a>
|
|
69
69
|
{% endif %}
|
|
70
70
|
|
|
71
71
|
{% if site.x_url %}
|
|
72
|
-
<a href="{{ site.x_url }}" title="X" target="_blank" rel="noopener">
|
|
72
|
+
<a href="{{ site.x_url }}" title="X" aria-label="X" target="_blank" rel="noopener">
|
|
73
73
|
<svg class="about-social--icon">
|
|
74
|
-
<use href="{{ "/assets/icons/x.svg#x" | relative_url }}"
|
|
74
|
+
<use href="{{ "/assets/icons/x.svg#x" | relative_url }}">
|
|
75
75
|
</use>
|
|
76
76
|
</svg>
|
|
77
77
|
</a>
|
|
78
78
|
{% endif %}
|
|
79
79
|
|
|
80
80
|
{% if site.telegram_url %}
|
|
81
|
-
<a href="{{ site.telegram_url }}" title="Telegram" target="_blank" rel="noopener">
|
|
81
|
+
<a href="{{ site.telegram_url }}" title="Telegram" aria-label="Telegram" target="_blank" rel="noopener">
|
|
82
82
|
<svg class="about-social--icon">
|
|
83
|
-
<use href="{{ "/assets/icons/telegram.svg#telegram" | relative_url }}"
|
|
83
|
+
<use href="{{ "/assets/icons/telegram.svg#telegram" | relative_url }}">
|
|
84
84
|
</use>
|
|
85
85
|
</svg>
|
|
86
86
|
</a>
|
|
87
87
|
{% endif %}
|
|
88
88
|
|
|
89
89
|
{% if site.email %}
|
|
90
|
-
<a href="mailto:{{ site.email }}" title="Email" target="_blank" rel="noopener">
|
|
90
|
+
<a href="mailto:{{ site.email }}" title="Email" aria-label="Email" target="_blank" rel="noopener">
|
|
91
91
|
<svg class="about-social--icon">
|
|
92
|
-
<use href="{{ "/assets/icons/mail.svg#mail" | relative_url }}"
|
|
92
|
+
<use href="{{ "/assets/icons/mail.svg#mail" | relative_url }}">
|
|
93
93
|
</use>
|
|
94
94
|
</svg>
|
|
95
95
|
</a>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-tallneck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Toniutti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|