jekyll-theme-miniplex 0.1.3 → 0.2.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 +10 -0
- data/_config.yml +1 -0
- data/_includes/navigation_mobile.html +1 -1
- 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: d923a2ea77bccc32e26813fbdaef543dcd00c16d357c66dbb8b1b12f139cf7b9
|
4
|
+
data.tar.gz: 7306148d3865fe8b75814f70ddc82403750b38d678e79e6bfe1ef4dbeb5fe127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a854ada32e2862f4d0779e9ed3b05db24e56fa111bb1839f49910e251791e06fe7faf3272dd9f9bbf5a01fb2e6748f10cb7446aadd19d2c5a599f3972228f99
|
7
|
+
data.tar.gz: a141aea427ed11542f049a1460f084498d6bcf59943e39beabdb14c48ba5763c6885b9726cad0aa50c1907f78d105e714f4997db44e28c7beac31e1cfbdfae83
|
data/README.md
CHANGED
@@ -40,8 +40,18 @@ And then execute:
|
|
40
40
|
|
41
41
|
## Usage
|
42
42
|
|
43
|
+
### Layouts
|
44
|
+
|
43
45
|
At the moment, there is a `page` and a `post` layout, but they use the `default` layout and so are identical.
|
44
46
|
|
47
|
+
### Configuration options
|
48
|
+
|
49
|
+
To change the label of the mobile navigation menu, add this to your `_config.yml`:
|
50
|
+
|
51
|
+
```yaml
|
52
|
+
miniplex:
|
53
|
+
mobile_nav_menu_title: "Menü"
|
54
|
+
```
|
45
55
|
|
46
56
|
## License
|
47
57
|
|
data/_config.yml
CHANGED
@@ -31,6 +31,6 @@
|
|
31
31
|
<ul id="navigation-controls">
|
32
32
|
<li id="site-title"><a href="/">{{ site.title | default: "Your site has no title yet. Set it in _config.yml." }}</a></li>
|
33
33
|
<li>
|
34
|
-
<button id="mobile-navigation-toggle">Menu</button>
|
34
|
+
<button id="mobile-navigation-toggle">{{ site.miniplex.mobile_nav_menu_title | default: "Menu" }}</button>
|
35
35
|
</li>
|
36
36
|
</ul>
|