jekyll-theme-nixest 1.1.2 → 1.1.4

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: ba9725df008217305443f8135d148bbfd3a2a6e68c036f9cddff08fa116b332e
4
- data.tar.gz: c1448872a4dd1feedb7c62eca23f76e67d2c1d5da7e9e665610c77cc7f939971
3
+ metadata.gz: 346dca4c85a6b0395aecb83a3af2d2bcc22ce4dfb72ad89c98f8d68d4591567e
4
+ data.tar.gz: 555af3d25d34d5609f28d9d4aba15232ac5464c1536c71e2919b0891a2c028f7
5
5
  SHA512:
6
- metadata.gz: caac1061e7e33c4230b8068804bd4bfac04cad3e5baf530cf31e4838bb30347b1bc280550f97884aaebe842af2ee4df78d39bebc5c06df2e004a918cd4cdd238
7
- data.tar.gz: 855f4f37e936c1035b76b9c5b86d5a9ce4e0c8feddafa16ffa1f778ef5a134593b44124ead0d18ffb28acc76b0ddb4cdc2aace5a5df0632448acb3d58690830e
6
+ metadata.gz: 59db5ff602a037f288168a041918983f7e8823e0ac618e5d73d634aea232aaf3616d4cdb617a22de7559e1f62a9cc8207b02aa4dd0857568c14900712751a4a7
7
+ data.tar.gz: 157219e7462e1b59bb7e522910f65180f6b4e944108af21a0744740d54ca37b9c3d2c7a325444be525a512809a37a3271d1d5494699ac42d184bfb3b4ff5366f
data/README.md CHANGED
@@ -18,7 +18,7 @@ This is an open-an-editor-an-just-start-writing theme. Compared to [“Nixer”]
18
18
 
19
19
  If you think this goes too far, use the above mentioned [Jekyll theme “Nix”](https://github.com/michaelnordmeyer/jekyll-theme-nix) instead.
20
20
 
21
- [I wrote up what inspired me to create both themes](https://michaelnordmeyer.com/i-created-two-ultra-minimalistic-jekyll-themes).
21
+ [I wrote up what inspired me to create the three themes](https://michaelnordmeyer.com/i-created-three-ultra-minimalistic-jekyll-themes).
22
22
 
23
23
  ## Limited Features
24
24
 
data/_config.yml CHANGED
@@ -42,6 +42,10 @@ theme_settings:
42
42
  # redirect_page_to: "to" # default: "to"
43
43
  # redirect_page_text: "Click here if you are not being redirected." # default: "Click here if you are not being redirected.""
44
44
 
45
+ ## Plugin jekyll-redirect-from settings
46
+ redirect_from:
47
+ json: false
48
+
45
49
  ## https://jekyllrb.com/docs/configuration/front-matter-defaults/
46
50
  # Only works for all posts, but can work for a subset of pages
47
51
  defaults:
data/_includes/head.html CHANGED
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="{{ page.lang | default: site.lang | default: 'en' }}">
3
3
  <head>
4
4
  <meta charset="utf-8">
data/_includes/style.html CHANGED
@@ -5,11 +5,12 @@
5
5
  --font-family: sans-serif;
6
6
  --spacing: 1em;
7
7
  --line-height: 1.5;
8
+ --reduced-line-height: 1.2;
8
9
  /* Calculate integer pixel values depending on the font size (1rem = 16px) */
9
- --border-size: calc(var(--font-size) * 1/var(--default-font-px));
10
- --x-script: calc(var(--font-size) * 11/var(--default-font-px));
11
- --small-font-size: calc(var(--font-size) * 14/var(--default-font-px));
12
- --big-font-size: calc(var(--font-size) * 32/var(--default-font-px));
10
+ --border-size: calc(var(--font-size) * 1/var(--default-font-px));
11
+ --x-script: calc(var(--font-size) * 11/var(--default-font-px));
12
+ --small-font-size: calc(var(--font-size) * 14/var(--default-font-px));
13
+ --big-font-size: calc(var(--font-size) * 32/var(--default-font-px));
13
14
  }
14
15
  html {
15
16
  max-width: 720px;
@@ -28,10 +29,11 @@
28
29
  img { display: block; max-width: 100%; height: auto; }
29
30
  figure { margin-left: 0; margin-right: 0; max-width: 100%; text-align: center; font-size: var(--small-font-size); line-height: 1; }
30
31
  blockquote { margin: var(--spacing) calc(var(--spacing) * 3/2) var(--spacing) calc(var(--spacing) * 1/2); padding-left: var(--spacing); border-left: var(--border-size) solid color-mix(in srgb, currentcolor 50%, transparent); }
32
+ pre { overflow-x: auto; tab-size: 2; }
31
33
  sub, sup { font-size: var(--x-script); line-height: 0; }
32
34
  hr { margin: calc(var(--spacing) * 2) 0; border: 0; border-top: var(--border-size) solid; }
33
- h1, h2, h3, h4, h5, h6 { line-height: 1.2; text-wrap: balance; }
34
- h1 { font-size: var(--big-font-size); text-align: center; }
35
+ h1, h2, h3, h4, h5, h6 { line-height: var(--reduced-line-height); text-wrap: balance; }
36
+ h1 { margin-block: 0.67em; font-size: var(--big-font-size); text-align: center; }
35
37
  body > main > ul { padding: 0; }
36
38
  body > main > ul > li { margin: calc(var(--spacing) * 1/2) 0; list-style-type: none; line-height: 1.25; }
37
39
  hr:has(+div[role="doc-endnotes"]) { margin-bottom: var(--spacing); }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-nixest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Nordmeyer
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: jekyll
@@ -15,7 +15,7 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: 3.9.3
18
+ version: 3.10.0
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
21
  version: '5.0'
@@ -25,7 +25,7 @@ dependencies:
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: 3.9.3
28
+ version: 3.10.0
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
31
  version: '5.0'
@@ -135,9 +135,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: '0'
138
+ version: 3.4.0
139
139
  requirements: []
140
- rubygems_version: 3.6.3
140
+ rubygems_version: 3.7.1
141
141
  specification_version: 4
142
142
  summary: A hard-core minimalist, single-author Jekyll theme with almost default browser
143
143
  styling, and a dark mode. Just a post list and posts, no menu, header, footer, or