jekyll-theme-miniplex 0.1.3 → 0.2.1
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/head_scripts.html +0 -0
- data/_includes/navigation_mobile.html +1 -1
- data/_layouts/default.html +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c35156119ce679d7b4114d831df57ff0a90f71d2e565d1370d64d8e3f958664e
|
4
|
+
data.tar.gz: ab4e664a145c58ab62eb76d396d64d8447befdd800f0b66e2fa7cbd1470c56c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c89a0685ea1dc1bce0e24c5ff3396dfc9ed0aab9c5f154392c8fc515042fcd31ca24bccd53aa3a9f13011f8ece92d1181bf7a3055aed945c14c31fd6cf77df55
|
7
|
+
data.tar.gz: 4c9b2fe023b786866e77f7ee1b31e58646864dad5ada37ab6e5cda86707addf0e49c36f8ba2fce4b097f2186f12e98156a645065384117d6661c3d2d34d5bd9a
|
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
File without changes
|
@@ -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>
|
data/_layouts/default.html
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-miniplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Würsch
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- LICENSE.txt
|
49
49
|
- README.md
|
50
50
|
- _config.yml
|
51
|
+
- _includes/head_scripts.html
|
51
52
|
- _includes/navigation_desktop.html
|
52
53
|
- _includes/navigation_mobile.html
|
53
54
|
- _layouts/default.html
|