jekyll-theme-miniplex 0.6.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 +7 -2
- data/_layouts/post.html +12 -3
- 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
@@ -63,16 +63,21 @@ miniplex:
|
|
63
63
|
|
64
64
|
## ToDos & Missing Features
|
65
65
|
|
66
|
+
- [ ] Mobile nav bugfixing
|
67
|
+
- [ ] Dark mode
|
66
68
|
- [ ] Print CSS
|
67
|
-
- [ ] Breadcrumbs
|
68
69
|
- [ ] In-page navigation
|
69
70
|
- [ ] Footer
|
70
71
|
- [ ] Maximizable tables
|
72
|
+
- [ ] Breadcrumbs, if possible
|
71
73
|
- [ ] Side notes, if possible
|
72
|
-
|
74
|
+
|
73
75
|
|
74
76
|
### Done
|
75
77
|
|
78
|
+
Most recent at the top.
|
79
|
+
|
80
|
+
- [X] Post author & date flexibility
|
76
81
|
- [X] Add a post's date to the page layout, or to a separate post layout
|
77
82
|
|
78
83
|
|
data/_layouts/post.html
CHANGED
@@ -2,8 +2,17 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
</p>
|
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 %}
|
8
17
|
|
9
18
|
{{ content }}
|
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
|