linaro-jekyll-theme 0.10.0 → 0.10.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/_includes/_theme-includes/_navigation/stacked-nav.html +1 -23
- 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: 42ca2f261749d132d9c204a087504544dbfebd4a
|
|
4
|
+
data.tar.gz: 8b03a1e56a5924f8e25646192a777b9a2e68aff4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce309c44b8010176d4f58b3742e365a6db6667771ef3b1062caded33995dffb4f0f4c15753c866e7c626f5a27d90ad37b56352cf9dd2bf84b292d66d89e9eead
|
|
7
|
+
data.tar.gz: 5dd0863f073458b02b340dda8bdb7a06356ab5c49ba49ebcd0e1f801ffd3c60af1495dcd6f205b5d7fdabc96c85fb68d58dac3358bbcf95387c51333e5424bc9
|
|
@@ -12,31 +12,9 @@
|
|
|
12
12
|
<ul class="nav nav-pills nav-stacked">
|
|
13
13
|
{% for tab in tab-list %}
|
|
14
14
|
<li class="{% if page-base[1] == tab.base %}active {% elsif page.url == tab.url or tab.active %}active {% endif %}side-nav-button">
|
|
15
|
-
<a href="{{tab.url}}" role="link">{{ tab.title}} {% if tab.external %}<i class="glyphicon glyphicon-new-window"></i>{% endif %}</a>
|
|
15
|
+
<a href="{{tab.url}}" role="link">{{ tab.title}} {% if tab.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}</a>
|
|
16
16
|
</li>
|
|
17
17
|
{% endfor %}
|
|
18
18
|
</ul>
|
|
19
|
-
<div class="tabbed-area" id="tabbed-nav-bar"><!-- Nav tabs -->
|
|
20
|
-
<nav class="navbar-default" role="navigation">
|
|
21
|
-
<div class="container">
|
|
22
|
-
<div class="navbar-header">
|
|
23
|
-
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#tabbed-nav-bar-collapse">
|
|
24
|
-
<span class="sr-only">Toggle navigation</span>
|
|
25
|
-
<span class="icon-bar"></span>
|
|
26
|
-
<span class="icon-bar"></span>
|
|
27
|
-
<span class="icon-bar"></span>
|
|
28
|
-
</button>
|
|
29
|
-
<a class="navbar-brand" id="sub-navigation-header" href=""></a>
|
|
30
|
-
</div>
|
|
31
|
-
<div class="collapse navbar-collapse" id="tabbed-nav-bar-collapse">
|
|
32
|
-
<ul class="nav nav-tabs tabbed-nav" id="tab-row" role="tablist">
|
|
33
|
-
{% for tab in tab-list %}
|
|
34
|
-
<li role="presentation" class="{% if page-base[1] == tab.base %}active {% elsif page.url == tab.url or tab.active %}active {% endif %}tabbed-nav-btn {% if tab.right %}pull-right{% endif %}"><a href="{{tab.url}}" role="link">{{ tab.title}}</a></li>
|
|
35
|
-
{% endfor %}
|
|
36
|
-
</ul>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
</nav>
|
|
40
|
-
</div>
|
|
41
19
|
{% endif %}
|
|
42
20
|
{% endif %}
|