jekyll-theme-miniplex 0.9.2 → 0.11.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 +34 -7
- data/_config.yml +1 -0
- data/_includes/footer.html +1 -0
- data/_layouts/default.html +4 -3
- 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: 1f9a4eb82bd23673683f3c3081242818cfbba646ab65928acc19921ca74c218e
|
4
|
+
data.tar.gz: 6e1a0882e28b4bdc100e1614dc720eda582e0dcab3ae640eacf95605be5990bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b13916d83cb7d3444f4e17b199e0d3628c70b44e013279b459a3e984ba9458f1e85f124b6daa000f65e1fbd66f67fa56709987cd9f36b68a18d36eb91d560d34
|
7
|
+
data.tar.gz: 914deaf93d0958c19187eaf56010966f58b3222c146cda319efa717fcfd70cd775b8dd5fb0936e464d0e50bdeb20280d4c5a2ed3258b22df394e3ac0ef7826da
|
data/README.md
CHANGED
@@ -1,20 +1,29 @@
|
|
1
1
|
# jekyll-theme-miniplex
|
2
2
|
|
3
|
-
A theme for [Jekyll](https://jekyllrb.com/). Features
|
3
|
+
A theme for [Jekyll](https://jekyllrb.com/). Features:
|
4
4
|
|
5
|
+
- Light & dark modes.
|
6
|
+
- Table reformatting on mobile and for very small screens.
|
7
|
+
- Styles for printing.
|
8
|
+
- At least some basic accessibility.
|
5
9
|
- Responsive.
|
6
|
-
- Table reformatting for very small screens.
|
7
10
|
- Hamburger menu at the bottom right, easy to reach.
|
8
11
|
- Uses the [IBM Plex](https://www.ibm.com/plex/) typeface, hence the name.
|
9
12
|
|
10
|
-
I'm using this for my personal web site, so don't expect this to fit your needs.
|
13
|
+
I'm using this for [my personal web site](https://timowuersch.com/), so don't expect this to fit your needs.
|
11
14
|
|
12
15
|
## What it looks like
|
13
16
|
|
17
|
+
### On desktop
|
18
|
+
|
14
19
|

|
15
20
|
|
16
21
|
|
17
22
|
|
23
|
+
### On mobile
|
24
|
+
|
25
|
+

|
26
|
+
|
18
27
|
## Installation
|
19
28
|
|
20
29
|
Add the following to your Jekyll site's `Gemfile`:
|
@@ -22,35 +31,45 @@ Add the following to your Jekyll site's `Gemfile`:
|
|
22
31
|
```ruby
|
23
32
|
gem "jekyll-theme-miniplex"
|
24
33
|
|
25
|
-
# jekyll-theme-miniplex depends on
|
34
|
+
# jekyll-theme-miniplex depends on these.
|
26
35
|
gem "jekyll-titles-from-headings", "~> 0.5.3"
|
36
|
+
gem "jekyll-seo-tag"
|
27
37
|
|
28
38
|
# Use the most recent version of jekyll-sass-converter, to force Dart Sass
|
29
39
|
gem "sass-embedded"
|
30
40
|
gem "jekyll-sass-converter", github: "jekyll/jekyll-sass-converter"
|
31
41
|
```
|
32
42
|
|
43
|
+
(Note that this will also install [jekyll-titles-from-headings](https://github.com/benbalter/jekyll-titles-from-headings) and [jekyll-seo-tag](https://github.com/jekyll/jekyll-seo-tag/), which this theme depends on.)
|
44
|
+
|
33
45
|
Add the following to your Jekyll site's `_config.yml`:
|
34
46
|
|
35
47
|
```yaml
|
36
48
|
theme: jekyll-theme-miniplex
|
37
49
|
|
50
|
+
plugins:
|
51
|
+
- jekyll-coffeescript
|
52
|
+
- jekyll-titles-from-headings
|
53
|
+
- jekyll-seo-tag
|
54
|
+
|
38
55
|
titles_from_headings:
|
39
56
|
enabled: true
|
40
57
|
strip_title: true
|
41
58
|
collections: true
|
42
59
|
```
|
43
60
|
|
44
|
-
|
61
|
+
Execute...
|
45
62
|
|
46
63
|
$ bundle
|
47
64
|
|
65
|
+
... to install everything.
|
66
|
+
|
48
67
|
|
49
68
|
## Usage
|
50
69
|
|
51
70
|
### Layouts
|
52
71
|
|
53
|
-
|
72
|
+
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
73
|
|
55
74
|
### Configuration options
|
56
75
|
|
@@ -61,10 +80,17 @@ miniplex:
|
|
61
80
|
mobile_nav_menu_title: "Menü"
|
62
81
|
```
|
63
82
|
|
83
|
+
### Navigation & footer content, and additional HEAD content
|
84
|
+
|
85
|
+
Optionally, put any of the following files into the `_includes` folder to override or extend the defaults:
|
86
|
+
|
87
|
+
- `footer.html` contains the footer content
|
88
|
+
- `additional_head_tags.html` will be included at the end of the HEAD block, before BODY starts
|
89
|
+
- `navigation_desktop.html` and `navigation_mobile.html` contain the contents of the desktop and mobile navigation, respectively.
|
90
|
+
|
64
91
|
## ToDos & Missing Features
|
65
92
|
|
66
93
|
- [ ] In-page navigation
|
67
|
-
- [ ] Footer
|
68
94
|
- [ ] Maximizable tables
|
69
95
|
- [ ] Breadcrumbs, if possible
|
70
96
|
- [ ] Side notes, if possible
|
@@ -74,6 +100,7 @@ miniplex:
|
|
74
100
|
|
75
101
|
Most recent at the top.
|
76
102
|
|
103
|
+
- [X] Footer
|
77
104
|
- [X] Dark mode
|
78
105
|
- [X] Print CSS
|
79
106
|
- [X] Mobile nav bugfixing
|
data/_config.yml
CHANGED
@@ -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
@@ -1,9 +1,6 @@
|
|
1
1
|
<!doctype html>
|
2
2
|
<html lang="en">
|
3
3
|
<head>
|
4
|
-
|
5
|
-
<title>{{ page.title }} - {{ site.title }}</title>
|
6
|
-
|
7
4
|
<meta charset="utf-8">
|
8
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
9
6
|
<meta name="theme-color" content="#ffffff">
|
@@ -13,6 +10,7 @@
|
|
13
10
|
|
14
11
|
{% include additional_head_tags.html %}
|
15
12
|
|
13
|
+
{% seo %}
|
16
14
|
</head>
|
17
15
|
|
18
16
|
<body>
|
@@ -30,6 +28,9 @@
|
|
30
28
|
<nav id="navigation-mobile" data-state="closed" role="navigation">
|
31
29
|
{% include navigation_mobile.html %}
|
32
30
|
</nav>
|
31
|
+
<footer>
|
32
|
+
{% include footer.html %}
|
33
|
+
</footer>
|
33
34
|
</div>
|
34
35
|
</body>
|
35
36
|
</html>
|
@@ -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.11.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: []
|