jumbo-jekyll-theme 1.8.94 → 1.8.95
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/_includes/nav.html +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f4cf65b81e392ad6a171c20cfc248dc2c4d37e2
|
|
4
|
+
data.tar.gz: 1f068afe2e8d87fe0fd7fa06b5bf3d8463a8ba31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6fbdbf66f168f4c99f347798f4f47810120fa6e69c7cbce61855a6c59fd426eea896103676b968fe4178b10220bfa226855833254aafb037483564a78d1dd1f
|
|
7
|
+
data.tar.gz: 0bbd1be50ec9ef5efc3e52e5014ef7e2c92fb7c1a85375d58e26b4d786aaf04ac4f795d1774619058bf2e89cb9ea5c42663217f3c2e7efc9a12399e9b1a08a05
|
data/_includes/nav.html
CHANGED
|
@@ -43,14 +43,14 @@ navbar-inverse navbar-static" id="main-navigation">
|
|
|
43
43
|
{% if page.url == menu-item.url %}
|
|
44
44
|
active
|
|
45
45
|
{% endif %}
|
|
46
|
-
{% endfor %}
|
|
46
|
+
{% endfor %} ">
|
|
47
47
|
<a href="{% if section.url %}{{section.url}}{% endif %}" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
|
|
48
48
|
{{section.title}} <span class="caret"></span>
|
|
49
49
|
</a>
|
|
50
50
|
<ul class="dropdown-menu menu">
|
|
51
51
|
{% for menu_option in section.options %}
|
|
52
52
|
{% if menu_option.options %}
|
|
53
|
-
<li class="dropdown-submenu sub-menu">
|
|
53
|
+
<li class="dropdown-submenu sub-menu {% if section.left %} pull-left {% endif %}">
|
|
54
54
|
<a tabindex="-1" href="{% if menu_option.url %}{{menu_option.url}}{% endif %}" class="m\obile-link-inactive">{{menu_option.text}}</a>
|
|
55
55
|
<ul class="dropdown-menu sub-menu">
|
|
56
56
|
{% for sub-option in menu_option.options %}
|
|
@@ -79,9 +79,9 @@ navbar-inverse navbar-static" id="main-navigation">
|
|
|
79
79
|
</li>
|
|
80
80
|
{% else %}
|
|
81
81
|
<li {% if section.url == page.permalink %}
|
|
82
|
-
class="main active
|
|
82
|
+
class="main active"
|
|
83
83
|
{% else %}
|
|
84
|
-
class="main
|
|
84
|
+
class="main"
|
|
85
85
|
{% endif %}
|
|
86
86
|
><a href="{{section.url}}" title="{{section.title}}">{{section.title}}</a></li>
|
|
87
87
|
{% endif %}
|