summoner-jekyll-theme 1.3.6 → 1.4.0

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: a8037fe81268a87ea3de41011bf4eab40476916c73986e3228e1154d53e2620f
4
- data.tar.gz: bb239eca794bc712abf81b14f2e71581f36a9b51fe023b1939e0c9fdacf0315d
3
+ metadata.gz: ba69f73622a2512864411f07bdc83c2e633596eaed3c26e1d7cd8cde79d3ab98
4
+ data.tar.gz: 8d308a767786fce4345d701b2b06ffb6b395088a750d370bafe3d21bce0945d3
5
5
  SHA512:
6
- metadata.gz: 4b7309d4e995957822cdba929d429478d45bf72a2185d1842fd1155a4533d4ab510583981e123713a403cd794aff2912571610da88de4824dae453da4cf12f71
7
- data.tar.gz: 40242913351b8afed633540cd86a57229ff82a0916ad7156babfdca2697dcfea1e61ea399cc5cea9bfa42bd37171ba46addb66694ea74202e47217c56402c85e
6
+ metadata.gz: 7975018a1a0ed3b303df2b5a8ae5822bd8cfbbce9bc9e5dec1caa575a389c7e0260bef4198e709948357fed0603a28509c12482778e4bcbd7d4114bcdb6f0c50
7
+ data.tar.gz: 0f7692d9bdb3ea7ce7ae9f47a044dea8d43e6da991cc9be8d36f187b693fd5222f70b513cd6655f1ea7fa8067ee337ad36fb46ce8a9f214cb5d17a592557dcf3
data/README.md CHANGED
@@ -31,11 +31,11 @@ Or install it yourself as:
31
31
 
32
32
  #### Layouts
33
33
 
34
- - 404.html: Default 404 page with SMT imagery, set permalink if using pretty links
34
+ - 404.html: Default 404 page, set permalink if using pretty links
35
35
  - archive.html: List tag types based on jekyll-archives tags
36
36
  - blog.html: Post listings, pagination supported via jekyll-paginate-v2
37
37
  - default.html: Minimum layout necessary for including CSS and JS
38
- - index.html: Homepage with SMT imagery and navigation
38
+ - index.html: Homepage and navigation
39
39
  - page.html: Use for miscellaneous pages (about, contact, etc.)
40
40
  - post.html: Use for blog posts
41
41
 
@@ -69,4 +69,4 @@ bundle
69
69
  ## License
70
70
 
71
71
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
72
- The fonts shipped with the theme are all under the OFL, and a copy of each font's license can be found in the `_data` directory.
72
+ The fonts shipped with the theme are all under the OFL, and a copy of each font's license can be found in the `_data` directory.
@@ -1,3 +1,5 @@
1
+ @use "../mixins/media";
2
+
1
3
  .nav {
2
4
  display: block;
3
5
 
@@ -11,7 +13,7 @@
11
13
  display: block;
12
14
  }
13
15
 
14
- @include media(breakpoint) {
16
+ @include media.media(breakpoint) {
15
17
  display: flex;
16
18
  font-size: var(--font-size-m);
17
19
  }
@@ -23,7 +25,7 @@
23
25
  justify-content: space-between;
24
26
  margin-bottom: var(--space-i);
25
27
 
26
- @include media(breakpoint) {
28
+ @include media.media(breakpoint) {
27
29
  display: flex;
28
30
  }
29
31
  }
@@ -1,8 +1,10 @@
1
+ @use "../mixins/media";
2
+
1
3
  .spacing {
2
4
  min-height: var(--space-s);
3
5
  width: 100%;
4
6
 
5
- @include media(breakpoint) {
7
+ @include media.media(breakpoint) {
6
8
  min-height: var(--space-xxxxl);
7
9
  }
8
10
  }
@@ -1,3 +1,5 @@
1
+ @use "../../mixins/media";
2
+
1
3
  .paginator a {
2
4
  text-decoration: none;
3
5
  color: var(--color-black);
@@ -5,7 +7,7 @@
5
7
  font-family: var(--font-family-syne);
6
8
  font-size: var(--font-size-xxl);
7
9
 
8
- @include media(breakpoint) {
10
+ @include media.media(breakpoint) {
9
11
  font-size: var(--font-size-m);
10
12
  }
11
13
 
@@ -1,3 +1,5 @@
1
+ @use "../../mixins/media";
2
+
1
3
  .paginator span {
2
4
  text-decoration: none;
3
5
  color: var(--color-text-muted);
@@ -5,7 +7,7 @@
5
7
  font-family: var(--font-family-syne);
6
8
  font-size: var(--font-size-xxl);
7
9
 
8
- @include media(breakpoint) {
10
+ @include media.media(breakpoint) {
9
11
  font-size: var(--font-size-m);
10
12
  }
11
13
  }
@@ -1,3 +1,5 @@
1
+ @use "../mixins/media";
2
+
1
3
  *,
2
4
  *::before,
3
5
  *::after {
@@ -92,7 +94,7 @@ li {
92
94
  margin-left: 20px;
93
95
  font-size: var(--font-size-xxl);
94
96
 
95
- @include media(breakpoint) {
97
+ @include media.media(breakpoint) {
96
98
  font-size: var(--font-size-m);
97
99
  }
98
100
  }
@@ -1,7 +1,9 @@
1
+ @use "../mixins/media";
2
+
1
3
  .content {
2
4
  padding: var(--space-m);
3
5
 
4
- @include media(breakpoint) {
6
+ @include media.media(breakpoint) {
5
7
  font-size: var(--font-size-m);
6
8
  margin-left: auto;
7
9
  margin-right: auto;
data/_sass/summoner.scss CHANGED
@@ -1,29 +1,29 @@
1
1
  // Mixins
2
- @import "mixins/media";
3
- @import "mixins/highlight";
2
+ @use "mixins/media";
3
+ @use "mixins/highlight";
4
4
 
5
5
  // Configurations
6
- @import "config/fonts";
7
- @import "config/variables";
8
- @import "config/reset";
6
+ @use "config/fonts";
7
+ @use "config/variables";
8
+ @use "config/reset";
9
9
 
10
10
  // Components
11
- @import "components/date";
12
- @import "components/listing";
13
- @import "components/nav/img";
14
- @import "components/nav/link";
15
- @import "components/nav";
16
- @import "components/paginator/link";
17
- @import "components/paginator/span";
18
- @import "components/paginator";
19
- @import "components/post/code";
20
- @import "components/post/img";
21
- @import "components/post/paragraph";
22
- @import "components/motif";
23
- @import "components/spacing";
24
- @import "components/tag";
11
+ @use "components/date";
12
+ @use "components/listing";
13
+ @use "components/nav/img";
14
+ @use "components/nav/link";
15
+ @use "components/nav";
16
+ @use "components/paginator/link" as link2;
17
+ @use "components/paginator/span";
18
+ @use "components/paginator";
19
+ @use "components/post/code";
20
+ @use "components/post/img" as img2;
21
+ @use "components/post/paragraph";
22
+ @use "components/motif";
23
+ @use "components/spacing";
24
+ @use "components/tag";
25
25
 
26
26
  // Layouts
27
- @import "layouts/404";
28
- @import "layouts/content";
29
- @import "layouts/landing";
27
+ @use "layouts/missing";
28
+ @use "layouts/content";
29
+ @use "layouts/landing";
data/assets/style.scss CHANGED
@@ -3,4 +3,4 @@ title: false
3
3
  styles: true
4
4
  ---
5
5
 
6
- @import "summoner";
6
+ @use "summoner";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: summoner-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.6
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rory Dudley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-23 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -53,9 +53,9 @@ files:
53
53
  - _sass/config/_fonts.scss
54
54
  - _sass/config/_reset.scss
55
55
  - _sass/config/_variables.scss
56
- - _sass/layouts/_404.scss
57
56
  - _sass/layouts/_content.scss
58
57
  - _sass/layouts/_landing.scss
58
+ - _sass/layouts/_missing.scss
59
59
  - _sass/mixins/_highlight.scss
60
60
  - _sass/mixins/_media.scss
61
61
  - _sass/summoner.scss
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.4.19
90
+ rubygems_version: 3.5.23
91
91
  signing_key:
92
92
  specification_version: 4
93
93
  summary: My custom jekyll theme for https://summoning.net/.
File without changes