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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94853bf92e57a9fea87555c09f927e992ba4a8b7b28fdebe357dc86211717979
4
- data.tar.gz: 36b372f4782ea63026c19dca9ab5a79aff4dc71fb2529141c244866aeb428261
3
+ metadata.gz: c35156119ce679d7b4114d831df57ff0a90f71d2e565d1370d64d8e3f958664e
4
+ data.tar.gz: ab4e664a145c58ab62eb76d396d64d8447befdd800f0b66e2fa7cbd1470c56c6
5
5
  SHA512:
6
- metadata.gz: a4e6b4c80c1fe6c40b1859842f4e74dffc43579279eefce169fd82dfb15fd13b19eb4292ae9c8b60fa67e49a13442a47d20652f0b7fec3acf4fc511af4eb2b0f
7
- data.tar.gz: a0a06b66d5eb5176227fa5c439f70e0b0cffb545281508366726a24c26529d0076464b507acedaffcd65b6b1aa8421122426ee0edd04539700cca36f08dbfc80
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
@@ -22,3 +22,4 @@ exclude:
22
22
  - vendor/cache/
23
23
  - vendor/gems/
24
24
  - vendor/ruby/
25
+
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>
@@ -6,6 +6,7 @@
6
6
  <title>{{ page.title }}</title>
7
7
  <link rel="stylesheet" href="/assets/css/main.css">
8
8
  <script type="text/javascript" src="/assets/js/main.js"></script>
9
+ {% include head_scripts.html %}
9
10
  </head>
10
11
  <body>
11
12
  <div id="layout">
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.3
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