jekyll-theme-miniplex 0.9.2 → 0.10.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 +4 -4
- data/README.md +5 -3
- data/_includes/footer.html +1 -0
- data/_layouts/default.html +3 -0
- data/_sass/jekyll-theme-miniplex.sass +36 -7
- data/assets/js/main.coffee +3 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c45ca6694d6c5bf57671b8deb295eba737cd51086a97c36da45ed1696f69db3b
|
4
|
+
data.tar.gz: 39442e86cf8f846eb8a5e9525dde40e25367aad79f4fc4186c6b211cade9b455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d52cc355fcc661118970171b8c8b46dfe7b623c5e43bc3ab7b3ea1248f9fba99af71d7208ffcad7ccd368878f1093041eaaa0378ec52c0c754127117fa2a871c
|
7
|
+
data.tar.gz: 37fd7dc6de44f0ff8e82af53e4bbafb4984ed3c7d734a5479e50daac547b863312bef5a1cbe2ec691abd023054ddf9abd28dda71bf87adb11126d243ef94d0c3
|
data/README.md
CHANGED
@@ -41,16 +41,18 @@ titles_from_headings:
|
|
41
41
|
collections: true
|
42
42
|
```
|
43
43
|
|
44
|
-
|
44
|
+
Execute...
|
45
45
|
|
46
46
|
$ bundle
|
47
47
|
|
48
|
+
... to install everything.
|
49
|
+
|
48
50
|
|
49
51
|
## Usage
|
50
52
|
|
51
53
|
### Layouts
|
52
54
|
|
53
|
-
|
55
|
+
There are two layouts: `page` and `post`. They are almost identical, except for the `post` layout that shows the post's date and author below the title.
|
54
56
|
|
55
57
|
### Configuration options
|
56
58
|
|
@@ -63,8 +65,8 @@ miniplex:
|
|
63
65
|
|
64
66
|
## ToDos & Missing Features
|
65
67
|
|
66
|
-
- [ ] In-page navigation
|
67
68
|
- [ ] Footer
|
69
|
+
- [ ] In-page navigation
|
68
70
|
- [ ] Maximizable tables
|
69
71
|
- [ ] Breadcrumbs, if possible
|
70
72
|
- [ ] Side notes, if possible
|
@@ -0,0 +1 @@
|
|
1
|
+
Made with <a href="https://jekyllrb.com/" target="_new">Jekyll</a> and <a href="https://gitlab.com/twuersch/jekyll-theme-miniplex" target="_new">jekyll-theme-miniplex</a>.
|
data/_layouts/default.html
CHANGED
@@ -251,7 +251,6 @@ $large_breakpoint: $medium_breakpoint + $large_minimum_left_navigation_width + 2
|
|
251
251
|
--group_color_level_1: #eeeeee
|
252
252
|
--group_color_level_2: #dddddd
|
253
253
|
|
254
|
-
|
255
254
|
:root
|
256
255
|
@media (prefers-color-scheme: dark)
|
257
256
|
--primary_foreground_color: #ffffff
|
@@ -276,7 +275,7 @@ body
|
|
276
275
|
display: grid
|
277
276
|
height: 100vh
|
278
277
|
grid-template-columns: [left-navigation] auto [content] 1fr
|
279
|
-
grid-template-rows:
|
278
|
+
grid-template-rows: [navigation-and-content] min-content [footer] min-content
|
280
279
|
|
281
280
|
@include below_large_mode
|
282
281
|
display: flex
|
@@ -308,9 +307,12 @@ body
|
|
308
307
|
grid-column: content / span 1
|
309
308
|
grid-row: 1 / span 1
|
310
309
|
width: $medium_content_width
|
311
|
-
padding: $medium_padding
|
310
|
+
padding-top: $medium_padding
|
311
|
+
@include linear_responsive_property("padding-right", $large_breakpoint, $unit, $large_breakpoint + 8 * $unit, 8 * $unit)
|
312
|
+
padding-bottom: $medium_padding
|
313
|
+
padding-left: $medium_padding
|
312
314
|
margin-left: auto
|
313
|
-
margin-right:
|
315
|
+
margin-right: 0
|
314
316
|
margin-top: $medium_maximum_horizontal_margin
|
315
317
|
margin-bottom: $medium_maximum_horizontal_margin
|
316
318
|
|
@@ -693,7 +695,7 @@ body
|
|
693
695
|
|
694
696
|
li#site-title
|
695
697
|
@include title_font
|
696
|
-
@include responsive_property(font-size, $xs: 1
|
698
|
+
@include responsive_property(font-size, $xs: 1 * $unit, $s: 1.25 * $unit, $m: 1.5 * $unit, $otherwise: 1.5 * $unit)
|
697
699
|
@include responsive_property(padding-left, $m: $unit, $otherwise: math.div($unit, 2))
|
698
700
|
@include responsive_property(padding-top, $m: math.div($unit, 2), $otherwise: math.div($unit, 4))
|
699
701
|
@include responsive_property(padding-bottom, $m: math.div($unit, 2), $otherwise: math.div($unit, 4))
|
@@ -707,9 +709,8 @@ body
|
|
707
709
|
li
|
708
710
|
@include responsive_property(padding-right, $m: $unit, $otherwise: math.div($unit, 2))
|
709
711
|
|
710
|
-
|
711
712
|
button#mobile-navigation-toggle
|
712
|
-
@include responsive_property(font-size, $xs: 1
|
713
|
+
@include responsive_property(font-size, $xs: 1 * $unit, $s: 1.25 * $unit, $m: 1.5 * $unit, $otherwise: 1.5 * $unit)
|
713
714
|
font-weight: bold
|
714
715
|
color: var(--heading_foreground_color)
|
715
716
|
cursor: pointer
|
@@ -768,3 +769,31 @@ body
|
|
768
769
|
--icon-url: url("/assets/images/close-outline.svg")
|
769
770
|
@include dark_mode
|
770
771
|
--icon-url: url("/assets/images/close-outline-darkmode.svg")
|
772
|
+
|
773
|
+
footer
|
774
|
+
text-align: end
|
775
|
+
color: var(--accent_color_1)
|
776
|
+
background-color: var(--group_color_level_1)
|
777
|
+
|
778
|
+
a
|
779
|
+
color: var(--accent_color_1)
|
780
|
+
|
781
|
+
@include extrasmall_mode
|
782
|
+
padding: math.div($unit, 2)
|
783
|
+
padding-bottom: 4 * $unit
|
784
|
+
|
785
|
+
@include small_mode
|
786
|
+
padding: math.div($unit, 2)
|
787
|
+
padding-bottom: 4 * $unit
|
788
|
+
|
789
|
+
@include medium_mode
|
790
|
+
padding: $unit
|
791
|
+
padding-bottom: 4 * $unit
|
792
|
+
|
793
|
+
@include large_mode
|
794
|
+
grid-column: left-navigation / span 2
|
795
|
+
grid-row: footer / span 1
|
796
|
+
padding-top: $medium_padding
|
797
|
+
padding-bottom: $medium_padding
|
798
|
+
@include linear_responsive_property("padding-left", $large_breakpoint, $unit, $large_breakpoint + 8 * $unit, 8 * $unit)
|
799
|
+
@include linear_responsive_property("padding-right", $large_breakpoint, $unit, $large_breakpoint + 8 * $unit, 8 * $unit)
|
data/assets/js/main.coffee
CHANGED
@@ -14,7 +14,7 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
|
|
14
14
|
|
15
15
|
# Mobile navigation
|
16
16
|
mobileNavigation = document.querySelector "nav#navigation-mobile"
|
17
|
-
mobileNavigationItems = document.querySelector "nav#navigation-
|
17
|
+
mobileNavigationItems = document.querySelector "nav#navigation-mobile ul#navigation-items"
|
18
18
|
mobileNavigationControls = document.querySelector "nav#navigation-mobile #navigation-controls"
|
19
19
|
navigationToggleButton = document.querySelector "button#mobile-navigation-toggle"
|
20
20
|
transparentNavCloseArea = document.querySelector "div#transparent-nav-close-area"
|
@@ -50,5 +50,7 @@ document.addEventListener "DOMContentLoaded", (DOMLoadedEvent) ->
|
|
50
50
|
|
51
51
|
mobileNavigationItems.setAttribute "aria-hidden", "true"
|
52
52
|
|
53
|
+
mobileNavigation.scrollIntoView {block: "end"}
|
54
|
+
|
53
55
|
navigationToggleButton.addEventListener "click", toggleNavigation
|
54
56
|
transparentNavCloseArea.addEventListener "click", toggleNavigation
|
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
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Würsch
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 2.0.0
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email:
|
43
43
|
- twuersch@fastmail.com
|
44
44
|
executables: []
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- README.md
|
50
50
|
- _config.yml
|
51
51
|
- _includes/additional_head_tags.html
|
52
|
+
- _includes/footer.html
|
52
53
|
- _includes/navigation_desktop.html
|
53
54
|
- _includes/navigation_mobile.html
|
54
55
|
- _layouts/default.html
|
@@ -77,7 +78,7 @@ homepage: https://gitlab.com/twuersch/jekyll-theme-miniplex
|
|
77
78
|
licenses:
|
78
79
|
- MIT
|
79
80
|
metadata: {}
|
80
|
-
post_install_message:
|
81
|
+
post_install_message:
|
81
82
|
rdoc_options: []
|
82
83
|
require_paths:
|
83
84
|
- lib
|
@@ -92,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
93
|
- !ruby/object:Gem::Version
|
93
94
|
version: '0'
|
94
95
|
requirements: []
|
95
|
-
rubygems_version: 3.3.
|
96
|
-
signing_key:
|
96
|
+
rubygems_version: 3.3.26
|
97
|
+
signing_key:
|
97
98
|
specification_version: 4
|
98
99
|
summary: A Jekyll theme.
|
99
100
|
test_files: []
|