jekyll-theme-miniplex 0.5.0 → 0.6.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 +9 -1
- data/_layouts/post.html +4 -0
- data/_sass/jekyll-theme-miniplex.sass +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 957db19fe7bbac03587b8b4870732266f3d8166a44787aeeaec0957193e03531
|
4
|
+
data.tar.gz: d182ab7d3c33759060400db40e67ad8812a8857f7caf951f571a62c65c20092b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82ec3ade4ac53665c1ed4acfa78f694ffb82de64a813434c68327acbd2ba8dd1cae28af7b7a8e02f8112021710a24213ee00ef05ac8536b15dd212894e3ca749
|
7
|
+
data.tar.gz: 3e28adc635b0668bf434cdc6ed0374dd7f03cfcc34ec50d4d3c2ef9172fc5dee062d57d1322295a79820ad81600aa226fa58808d0bfef5bbf7fd2163f2688d67
|
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,7 +63,6 @@ miniplex:
|
|
58
63
|
|
59
64
|
## ToDos & Missing Features
|
60
65
|
|
61
|
-
- [ ] Add a post's date to the page layout, or to a separate post layout
|
62
66
|
- [ ] Print CSS
|
63
67
|
- [ ] Breadcrumbs
|
64
68
|
- [ ] In-page navigation
|
@@ -67,6 +71,10 @@ miniplex:
|
|
67
71
|
- [ ] Side notes, if possible
|
68
72
|
- [ ] Dark mode
|
69
73
|
|
74
|
+
### Done
|
75
|
+
|
76
|
+
- [X] Add a post's date to the page layout, or to a separate post layout
|
77
|
+
|
70
78
|
|
71
79
|
## License
|
72
80
|
|
data/_layouts/post.html
CHANGED
@@ -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
|