jekyll-theme-miniplex 0.5.0 → 0.7.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 +16 -3
- data/_layouts/post.html +13 -0
- data/_sass/jekyll-theme-miniplex.sass +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52919686c779fb08d95767dd5263f9cac5fb60c15d65fc7eb3b7a8ac6d270b1a
|
4
|
+
data.tar.gz: 8e1c22ca08f44e44b65042355dbde529194e13eda6d55483b831d2ab62a37555
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f353ab99352eb668477e3269245f83f41bc1211d021e7b4ba40c47b3bb62390d0ef3553fffeef32b7a2f23a250b00df6ab0c3e7291fbe0c2c014ca08912a7c1f
|
7
|
+
data.tar.gz: 4d04b11f9876c5aa4422044c1859dc64f1be6fdd39dade78bedb6803106e0695539dde4aaca36eab3f5f32eabea32ec7e3df7df7bb318baf43c33c7250081f3c
|
data/README.md
CHANGED
@@ -34,6 +34,11 @@ Add the following to your Jekyll site's `_config.yml`:
|
|
34
34
|
|
35
35
|
```yaml
|
36
36
|
theme: jekyll-theme-miniplex
|
37
|
+
|
38
|
+
titles_from_headings:
|
39
|
+
enabled: true
|
40
|
+
strip_title: true
|
41
|
+
collections: true
|
37
42
|
```
|
38
43
|
|
39
44
|
And then execute:
|
@@ -58,14 +63,22 @@ miniplex:
|
|
58
63
|
|
59
64
|
## ToDos & Missing Features
|
60
65
|
|
61
|
-
- [ ]
|
66
|
+
- [ ] Mobile nav bugfixing
|
67
|
+
- [ ] Dark mode
|
62
68
|
- [ ] Print CSS
|
63
|
-
- [ ] Breadcrumbs
|
64
69
|
- [ ] In-page navigation
|
65
70
|
- [ ] Footer
|
66
71
|
- [ ] Maximizable tables
|
72
|
+
- [ ] Breadcrumbs, if possible
|
67
73
|
- [ ] Side notes, if possible
|
68
|
-
|
74
|
+
|
75
|
+
|
76
|
+
### Done
|
77
|
+
|
78
|
+
Most recent at the top.
|
79
|
+
|
80
|
+
- [X] Post author & date flexibility
|
81
|
+
- [X] Add a post's date to the page layout, or to a separate post layout
|
69
82
|
|
70
83
|
|
71
84
|
## License
|
data/_layouts/post.html
CHANGED
@@ -2,4 +2,17 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
+
{% if page.date %}
|
6
|
+
{% if page.author %}
|
7
|
+
<p><small>{{ page.author }}, {{ page.date | date: "%Y-%m-%d" }}</small></p>
|
8
|
+
{% else %}
|
9
|
+
<p><small>{{ page.date | date: "%Y-%m-%d" }}</small></p>
|
10
|
+
{% endif %}
|
11
|
+
{% else %}
|
12
|
+
{% if page.author %}
|
13
|
+
<p><small>{{ page.author }}</small></p>
|
14
|
+
{% else %}
|
15
|
+
{% endif %}
|
16
|
+
{% endif %}
|
17
|
+
|
5
18
|
{{ content }}
|
@@ -297,6 +297,10 @@ body
|
|
297
297
|
|
298
298
|
em, i
|
299
299
|
font-style: italic
|
300
|
+
|
301
|
+
small
|
302
|
+
@include responsive_property(font-size, $xs: 0.625 * $unit, $s: 0.75 * $unit, $m: 0.875 * $unit, $otherwise: 0.875 * $unit)
|
303
|
+
color: $accent_color_1
|
300
304
|
|
301
305
|
a
|
302
306
|
color: $interactive-color
|
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.7.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: 2023-02-
|
11
|
+
date: 2023-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|