jekyll-theme-miniplex 0.4.0 → 0.5.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: 64e3a3cf4110f8d986903b10c1096034114fd368e2468cf274d93caede776a80
4
- data.tar.gz: e3a1e562e779741b1719c3b419a9b46fabd73bd2b0d0a0125c40daaff5170fd0
3
+ metadata.gz: 7c7bb9146d5165d0e9a5413fcd8ad712e1152299b9e689104587a7d28057ba32
4
+ data.tar.gz: b0a1b5114c139f367c2727cdfe8d8ccc9cffe487a7f244c41ebccc5d5f137f4f
5
5
  SHA512:
6
- metadata.gz: 84890a8f7a2e6804fd6cf9ac90794e49782c53553b71c2910555073d46cf60e118a082ab166f738fc09250186a4b7c7ef18e78624e0d121e621427d8e156f7e5
7
- data.tar.gz: 82db7fe119d23d4d497d35575968c831d40b8359816707a5a9ad74cd49e4bf5de687df9c0b6d47211c1520d14f0c8c5f980705f8f39b3d14813876ff89bbfffc
6
+ metadata.gz: 3b898bf2b5a6d844fff3dc53939acbf38a5956e570470288d35e4bbb2f8c9216db856ba7826a09981b63284d791541ef42baf01cd72f75a67252ab856866414a
7
+ data.tar.gz: 10042b2fd039b19964165d5f7015fb586e49164bdb4510c95b493cbc96131722fcf121b4e667a4443d62cf6ff22923448401b0f95bca696d4164f4789eb06a8d
data/README.md CHANGED
@@ -22,6 +22,9 @@ Add the following to your Jekyll site's `Gemfile`:
22
22
  ```ruby
23
23
  gem "jekyll-theme-miniplex"
24
24
 
25
+ # jekyll-theme-miniplex depends on this.
26
+ gem "jekyll-titles-from-headings", "~> 0.5.3"
27
+
25
28
  # Use the most recent version of jekyll-sass-converter, to force Dart Sass
26
29
  gem "sass-embedded"
27
30
  gem "jekyll-sass-converter", github: "jekyll/jekyll-sass-converter"
@@ -53,6 +56,18 @@ miniplex:
53
56
  mobile_nav_menu_title: "Menü"
54
57
  ```
55
58
 
59
+ ## ToDos & Missing Features
60
+
61
+ - [ ] Add a post's date to the page layout, or to a separate post layout
62
+ - [ ] Print CSS
63
+ - [ ] Breadcrumbs
64
+ - [ ] In-page navigation
65
+ - [ ] Footer
66
+ - [ ] Maximizable tables
67
+ - [ ] Side notes, if possible
68
+ - [ ] Dark mode
69
+
70
+
56
71
  ## License
57
72
 
58
73
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml CHANGED
@@ -6,6 +6,7 @@ title: Miniplex Theme for Jekyll
6
6
 
7
7
  plugins:
8
8
  - jekyll-coffeescript
9
+ - jekyll-titles-from-headings
9
10
 
10
11
  exclude:
11
12
  - .sass-cache/
@@ -23,3 +24,7 @@ exclude:
23
24
  - vendor/gems/
24
25
  - vendor/ruby/
25
26
 
27
+ titles_from_headings:
28
+ enabled: true
29
+ strip_title: true
30
+ collections: true # This makes it work for posts as well
@@ -20,6 +20,7 @@
20
20
  <div id="layout">
21
21
  <main id="content">
22
22
  <section>
23
+ <h1>{{ page.title }}</h1>
23
24
  {{ content }}
24
25
  </section>
25
26
  </main>
@@ -290,18 +290,20 @@ body
290
290
  @include default_font
291
291
  @include responsive_property(margin-bottom, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise:1 * $unit)
292
292
 
293
- strong
293
+ strong, b
294
294
  font-weight: bold
295
295
  color: $heading_foreground_color
296
296
 
297
297
 
298
- em
298
+ em, i
299
299
  font-style: italic
300
300
 
301
301
  a
302
302
  color: $interactive-color
303
303
  background-color: $interactive_background_color
304
304
  text-decoration: none
305
+ padding-left: math.div($unit, 4)
306
+ padding-right: math.div($unit, 4)
305
307
 
306
308
  h1
307
309
  @include title_font
@@ -337,6 +339,13 @@ body
337
339
  @include responsive_property(margin-top, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
338
340
  @include responsive_property(margin-bottom, $xs: 0.75 * $unit, $s: 0.875 * $unit, $m: 1 * $unit, $otherwise: 1 * $unit)
339
341
 
342
+ h6
343
+ @include heading_font
344
+ color: $primary_foreground_color
345
+ @include responsive_property(font-size, $xs: 0.625 * $unit, $s: 0.75 * $unit, $m: 0.875 * $unit, $otherwise: 0.875 * $unit)
346
+ @include responsive_property(margin-top, $xs: 0.625 * $unit, $s: 0.75 * $unit, $m: 0.875 * $unit, $otherwise: 0.875 * $unit)
347
+ @include responsive_property(margin-bottom, $xs: 0.625 * $unit, $s: 0.75 * $unit, $m: 0.875 * $unit, $otherwise: 0.875 * $unit)
348
+
340
349
  hr
341
350
  border: 0
342
351
  border-top: 1px solid $accent_color_1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-miniplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Würsch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-05 00:00:00.000000000 Z
11
+ date: 2023-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll