jekyll-theme-tallneck 0.2.3 → 0.2.5
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 +6 -5
- data/_layouts/about.html +3 -3
- data/_sass/tallneck/base.scss +0 -2
- data/_sass/tallneck/components/post-card.scss +5 -7
- data/_sass/tallneck/components/post-preview.scss +0 -1
- data/_sass/tallneck/components/post.scss +1 -1
- data/_sass/tallneck/variables.scss +1 -3
- 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: ebbaf26107ac0b09c6a0f4dea4727e0230e5c0886f885385e2378b0635665fbe
|
|
4
|
+
data.tar.gz: 1609c7b3ef22c057c2512ad0152097b3545a9f9442fb7fe446764fbedd6baf3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76cd346af7117fd2a6f7985bec1a72e6cfc4aaf03da76c15897fce268630c44c9e25a4627de01dea4fce306ca18a28d31723e12f254f73877b9db22dc16e47c1
|
|
7
|
+
data.tar.gz: 5d3cdde2e4245936e311849054e3dc7df924d0828eefed97ef08e0b4efc1382eaf88ed6a9d6e62f934f07920195efa288e8977f22d969b23bcd3a3112f25e14e
|
data/_includes/head.html
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
<meta charset="UTF-8">
|
|
3
3
|
|
|
4
4
|
<!-- Design meta -->
|
|
5
|
-
<meta content="width=device-width,
|
|
6
|
-
<meta content="#
|
|
7
|
-
<meta content="#
|
|
8
|
-
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta content="#fff" media="(prefers-color-scheme: light)" name="theme-color">
|
|
7
|
+
<meta content="#121212" media="(prefers-color-scheme: dark)" name="theme-color">
|
|
9
8
|
|
|
10
9
|
{% if page.private %}
|
|
11
10
|
<meta name="robots" content="noindex, nofollow">
|
|
@@ -15,10 +14,12 @@
|
|
|
15
14
|
{% else if site.keywords %}
|
|
16
15
|
<meta name="keywords" content="{{ site.keywords }}">
|
|
17
16
|
{% endif %}
|
|
18
|
-
|
|
17
|
+
<meta name="robots" content="index, follow">
|
|
19
18
|
{% seo %}
|
|
20
19
|
{% endif %}
|
|
21
20
|
|
|
21
|
+
<link rel="alternate" type="application/atom+xml" title="Feed" href="{{ "/feed.xml" | absolute_url }}">
|
|
22
|
+
|
|
22
23
|
<!-- Preload -->
|
|
23
24
|
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans.woff2" | relative_url }}" type="font/woff2" crossOrigin="anonymous">
|
|
24
25
|
<link rel="preload" as="font" href="{{ "/assets/font/opensans/opensans-bold.woff2" | relative_url }}" type="font/woff2" crossOrigin="anonymous">
|
data/_layouts/about.html
CHANGED
|
@@ -8,7 +8,6 @@ layout: base
|
|
|
8
8
|
<h1>About me</h1>
|
|
9
9
|
{% endif %}
|
|
10
10
|
|
|
11
|
-
{% if site.social %}
|
|
12
11
|
<nav class="about-social no_print">
|
|
13
12
|
{% if site.github_url %}
|
|
14
13
|
<a href="{{ site.github_url }}" title="GitHub" target="_blank" rel="noopener">
|
|
@@ -96,12 +95,13 @@ layout: base
|
|
|
96
95
|
</a>
|
|
97
96
|
{% endif %}
|
|
98
97
|
</nav>
|
|
99
|
-
{% endif %}
|
|
100
98
|
|
|
101
99
|
<div class="about">
|
|
100
|
+
{% if page.image %}
|
|
102
101
|
<div class="about--img">
|
|
103
|
-
<img src="{{
|
|
102
|
+
<img src="{{ page.image | relative_url }}" alt="About me" width="500px" height="500px">
|
|
104
103
|
</div>
|
|
104
|
+
{% endif %}
|
|
105
105
|
<div class="about--content">
|
|
106
106
|
{{ content }}
|
|
107
107
|
</div>
|
data/_sass/tallneck/base.scss
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
display: grid;
|
|
3
3
|
gap: 1rem;
|
|
4
4
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
5
|
-
grid-
|
|
5
|
+
grid-auto-rows: minmax($card-min-height, 1fr);
|
|
6
6
|
|
|
7
7
|
@media (max-width: 1100px) and (min-width: 800px) {
|
|
8
8
|
grid-template-columns: 1fr 1fr;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
.post-card {
|
|
29
29
|
max-width: $card-max-width;
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
|
|
32
32
|
vertical-align: middle;
|
|
33
33
|
|
|
@@ -50,6 +50,8 @@
|
|
|
50
50
|
.post-card--flex {
|
|
51
51
|
display: flex;
|
|
52
52
|
flex-flow: column nowrap;
|
|
53
|
+
height: 100%;
|
|
54
|
+
padding: 1rem;
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
.post-card--image {
|
|
@@ -69,13 +71,9 @@
|
|
|
69
71
|
|
|
70
72
|
.post-card--subtitle {
|
|
71
73
|
font-size: 0.95em;
|
|
72
|
-
margin-block-start:
|
|
74
|
+
margin-block-start: 0.5rem;
|
|
73
75
|
margin-block-end: 0.5rem;
|
|
74
76
|
flex-grow: 1;
|
|
75
|
-
|
|
76
|
-
// from .justify
|
|
77
|
-
text-align: justify;
|
|
78
|
-
word-spacing: -2px;
|
|
79
77
|
}
|
|
80
78
|
|
|
81
79
|
.post-card--date {
|
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.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Toniutti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|