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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9570e0d74bf82ea1adb5c7eaba51bd99af50f70fae652b564e4b88d0a825dff
4
- data.tar.gz: 9b4da22a5aeaa959acf048613149681762a8cf6cb0a0d06c3a1e93bcba2bb499
3
+ metadata.gz: ebbaf26107ac0b09c6a0f4dea4727e0230e5c0886f885385e2378b0635665fbe
4
+ data.tar.gz: 1609c7b3ef22c057c2512ad0152097b3545a9f9442fb7fe446764fbedd6baf3f
5
5
  SHA512:
6
- metadata.gz: 8c413e4065bb08acd61376b283735fd753726f80132429f7ba3cb6cf655de3daa70b7cc750be40af5c3af63c81abac1ffddf175c68f6a0494a013b4bf73c06d8
7
- data.tar.gz: 27aa744fd453c04d5f3c6e499022b7e5f2b76ae034ee19badf14a5a13e771b787ddf031c05c00fc2aad6b383328c00599588daf3b56d973b96972747e08fcaf8
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, height=device-height, initial-scale=1.0, minimum-scale=1.0" name="viewport">
6
- <meta content="#f0f0f0" media="(prefers-color-scheme: light)" name="theme-color">
7
- <meta content="#252525" media="(prefers-color-scheme: dark)" name="theme-color">
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="{{ site.about_image | relative_url }}" alt="About me" width="500px" height="500px">
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>
@@ -2,8 +2,6 @@
2
2
  * Base
3
3
  */
4
4
  html {
5
- min-height: 100vh;
6
- min-height: 100svh;
7
5
  min-width: $min-width;
8
6
  }
9
7
 
@@ -2,7 +2,7 @@
2
2
  display: grid;
3
3
  gap: 1rem;
4
4
  grid-template-columns: 1fr 1fr 1fr 1fr;
5
- grid-template-rows: repeat(auto-fill, minmax($card-max-height, 1fr));
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
- padding: 1rem;
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: 0rem;
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 {
@@ -11,7 +11,6 @@
11
11
 
12
12
  .post-preview {
13
13
  width: 100%;
14
- max-height: $preview-max-height;
15
14
 
16
15
  transition: 0.4s;
17
16
 
@@ -47,7 +47,7 @@
47
47
  }
48
48
 
49
49
  img {
50
- max-width: 50%;
50
+ max-height: 500px;
51
51
  height: auto;
52
52
  margin-left: auto;
53
53
  margin-right: auto;
@@ -25,9 +25,7 @@ $content-width: 1000px !default;
25
25
 
26
26
  $card-max-width: 18rem !default;
27
27
  $card-min-width: 16rem !default;
28
- $card-max-height: 440px !default;
29
-
30
- $preview-max-height: 15rem !default;
28
+ $card-min-height: 400px !default;
31
29
 
32
30
  // Colors
33
31
  :root {
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.3
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-02-29 00:00:00.000000000 Z
11
+ date: 2024-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll