linaro-jekyll-theme 0.1.2.57 → 0.1.2.59
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/nav.html +122 -91
- data/_sass/core/nav.scss +11 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9c4ea9e3a5548b196c41c4dd9a9f3f4e3def293
|
|
4
|
+
data.tar.gz: e4bdf6c70dd85e47a8e85ed96998c2fe73eb2aac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70c446559d84dc2f11810ed6e0e7fab41a78cb0c57bf6bbe14f37d60f5c48f25311cf498b594649e9d9d3d91b8314840b9c84f6e6cbd0f5b34808ec976c9ec32
|
|
7
|
+
data.tar.gz: 47f6800523944bc924c732fde1a9505cdd168453273bf25be8034348418d8f29c141bbf67501750d0fc9754a092effc21a814f6b032c7713274fb85d328ecd25
|
|
@@ -1,100 +1,131 @@
|
|
|
1
1
|
{% if site.data.company.google.tag_manager %}
|
|
2
2
|
{% include _theme-includes/_script-includes/gtm/gtm-noscript.html %}
|
|
3
3
|
{% endif %}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{% if site.data.nav.brand %}
|
|
15
|
-
<a class="navbar-brand " href="{{site.data.nav.brand.url}}">
|
|
16
|
-
{% if site.data.nav.brand.image %}
|
|
17
|
-
<img src="{% if site.using_assets %}{% asset_path '{{site.data.nav.brand.image}}' %}{% else %}{{site.data.nav.brand.image}}{% endif %}" alt="{{site.title}} Logo." id="brand-image">
|
|
18
|
-
{% else %}
|
|
19
|
-
{{site.title}}
|
|
20
|
-
{% endif %}
|
|
21
|
-
</a>
|
|
22
|
-
{% endif %}
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<!-- NAVBAR COLLAPSE-->
|
|
26
|
-
<div class="collapse navbar-collapse" id="navbar-collapse">
|
|
27
|
-
<ul class="nav navbar-nav navbar-right" id="navbar-buttons">
|
|
28
|
-
{% for section in site.data.nav.pages %}
|
|
29
|
-
{% if section.options %}
|
|
30
|
-
<li class="dropdown
|
|
31
|
-
{% for menu-item in section.options %}
|
|
32
|
-
{% if page.url == menu-item.url %}
|
|
33
|
-
active
|
|
34
|
-
{% endif %}
|
|
35
|
-
{% endfor %}">
|
|
36
|
-
<a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{section.title}} <span class="caret"></span></a>
|
|
37
|
-
<ul class="dropdown-menu">
|
|
38
|
-
{% for menu_option in section.options %}
|
|
39
|
-
{% if menu_option.options %}
|
|
40
|
-
<li class="dropdown-submenu">
|
|
41
|
-
<a tabindex="-1" href="{% if menu-option.url %}{{menu-option.url}}{% endif %}">{{menu_option.text}}</a>
|
|
42
|
-
<ul class="dropdown-menu">
|
|
43
|
-
{% for sub-option in menu_option.options %}
|
|
44
|
-
{% if sub-option.options %}
|
|
45
|
-
<li class="dropdown-submenu">
|
|
46
|
-
<a href="{% if sub-option.url %}{{sub-option.url}}{% endif %}">{{sub-option.text}}</a>
|
|
47
|
-
<ul class="dropdown-menu">
|
|
48
|
-
{% for sub-sub-option in sub-option.options %}
|
|
49
|
-
<li><a href="{{sub-sub-option.url}}">{{sub-sub-option.text}}</a></li>
|
|
50
|
-
{% endfor %}
|
|
51
|
-
</ul>
|
|
52
|
-
</li>
|
|
53
|
-
{% else %}
|
|
54
|
-
<li><a href="{{sub-option.url}}">{{sub-option.text}}</a></li>
|
|
55
|
-
{% endif %}
|
|
56
|
-
{% endfor %}
|
|
57
|
-
</ul>
|
|
58
|
-
</li>
|
|
59
|
-
{% else %}
|
|
60
|
-
<li>
|
|
61
|
-
<a target="_self" href="{{menu_option.url}}" class="dropdown-item " title="{{menu_option.txt}}">{{menu_option.text}} {% if menu_option.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}</a>
|
|
62
|
-
</li>
|
|
63
|
-
{% endif %}
|
|
64
|
-
{% endfor %}
|
|
65
|
-
</ul>
|
|
66
|
-
</li>
|
|
67
|
-
{% else %}
|
|
68
|
-
<li {% if section.url == page.permalink %}
|
|
69
|
-
class="active"
|
|
70
|
-
{% endif %}
|
|
71
|
-
><a href="{{section.url}}" title="{{section.title}}">{{section.title}}</a></li>
|
|
72
|
-
{% endif %}
|
|
73
|
-
{% endfor %}
|
|
74
|
-
|
|
4
|
+
{% if page.facebook %}
|
|
5
|
+
<div id="fb-root"></div>
|
|
6
|
+
<script>(function(d, s, id) {
|
|
7
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
|
8
|
+
if (d.getElementById(id)) return;
|
|
9
|
+
js = d.createElement(s); js.id = id;
|
|
10
|
+
js.src = 'https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.11';
|
|
11
|
+
fjs.parentNode.insertBefore(js, fjs);
|
|
12
|
+
}(document, 'script', 'facebook-jssdk'));</script>
|
|
13
|
+
{% endif %}
|
|
75
14
|
|
|
76
|
-
|
|
77
|
-
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="glyphicon glyphicon-search"></i></a>
|
|
78
|
-
<ul class="dropdown-menu" id="searchDropdown">
|
|
79
|
-
<form class="form-inline" action="/search/" method="GET" target="_self">
|
|
80
|
-
<input type="text" name="q" class="form-control" placeholder="Search...">
|
|
81
|
-
<button type="reset" class="btn btn-default dropdown-toggle" data-target="#searchDropdown" data-toggle="search-dropdown">
|
|
82
|
-
<span class="glyphicon glyphicon-remove">
|
|
83
|
-
<span class="sr-only">Close</span>
|
|
84
|
-
</span>
|
|
85
|
-
</button>
|
|
86
|
-
<button type="submit" class="btn btn-default" id="searchButton"><i class="glyphicon glyphicon-search"></i></button>
|
|
87
|
-
<input type="hidden" name="fields.label" value="{{ site.data.company.search-label }}">
|
|
88
|
-
</form>
|
|
89
|
-
</ul>
|
|
90
|
-
</li>
|
|
15
|
+
<nav class="{% if page.nav-dark %}nav-dark {% elsif page.nav-light %}nav-light {% endif %}{% if site.data.nav.style %}{{ site.data.nav.style }}{% else %}navbar-inverse navbar-fixed-top{% endif %} no-js" id="main-navigation">
|
|
91
16
|
|
|
17
|
+
<div class="container">
|
|
18
|
+
<!-- NAVBAR HEADER-->
|
|
19
|
+
<div class="navbar-header">
|
|
20
|
+
<button for="navbar-toggle-cbox" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" aria-controls="navbar">
|
|
21
|
+
<span class="sr-only">Toggle navigation</span>
|
|
22
|
+
<span class="icon-bar"></span>
|
|
23
|
+
<span class="icon-bar"></span>
|
|
24
|
+
<span class="icon-bar"></span>
|
|
25
|
+
</button>
|
|
26
|
+
|
|
27
|
+
{% if site.data.nav.brand %}
|
|
28
|
+
<a class="navbar-brand " href="{{site.data.nav.brand.url}}">
|
|
29
|
+
{% if site.data.nav.brand.image %}
|
|
30
|
+
<svg id="navbar_svg" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 240"><defs><style>.cls-1{fill:none;}.cls-2{fill:#666;}.cls-3,.cls-8{fill:#9c3;}.cls-4,.cls-5{fill:#c03;}.cls-5{opacity:0.6;}.cls-6,.cls-7{fill:#909;}.cls-7,.cls-8{opacity:0.7;}</style></defs><title>Linaro-Logo</title><g id="LinaroStandard"><path class="cls-1" d="M295.55,81.05a11.51,11.51,0,0,0-4,5,17.2,17.2,0,0,0-1.12,6.31,15,15,0,0,0,.66,4.81,7.78,7.78,0,0,0,1.88,3.1,6.89,6.89,0,0,0,2.94,1.68,13.62,13.62,0,0,0,3.76.49,37.57,37.57,0,0,0,3.8-.2,24.27,24.27,0,0,0,4-.76,25.78,25.78,0,0,0,4.16-1.55,29.25,29.25,0,0,0,4.29-2.51V75.94a59.56,59.56,0,0,0-12.57,1.65A22.93,22.93,0,0,0,295.55,81.05Z"/><path class="cls-1" d="M448,59.48a15.28,15.28,0,0,0-5.28-5,15.59,15.59,0,0,0-7.85-1.85,14.06,14.06,0,0,0-7.36,1.91,15.94,15.94,0,0,0-5.31,5.24,25.83,25.83,0,0,0-3.2,7.92,42.83,42.83,0,0,0-1.09,9.93,42.15,42.15,0,0,0,1,8.84,28.7,28.7,0,0,0,3,8.18,18.39,18.39,0,0,0,5.34,6,13.06,13.06,0,0,0,7.82,2.35,12.18,12.18,0,0,0,7.52-2.38,18.36,18.36,0,0,0,5.21-6.27,32.75,32.75,0,0,0,3-8.77,50,50,0,0,0,1-10A42.79,42.79,0,0,0,451,66.8,21.49,21.49,0,0,0,448,59.48Z"/><polygon class="cls-2" points="157.16 99.76 112.55 99.76 112.55 9.76 94.41 9.76 94.41 113.16 157.16 113.16 157.16 99.76"/><path class="cls-2" d="M166.41,26.29a10,10,0,0,0,3,2.18,8.58,8.58,0,0,0,3.73.83A9,9,0,0,0,177,28.5a9.6,9.6,0,0,0,3-2.11,9.11,9.11,0,0,0,1.91-3,10.09,10.09,0,0,0,.66-3.63,10.32,10.32,0,0,0-.66-3.66A8.69,8.69,0,0,0,180,13a9.26,9.26,0,0,0-6.8-2.81,10,10,0,0,0-3.73.69,9,9,0,0,0-3,1.95,9.39,9.39,0,0,0-2,3,9.22,9.22,0,0,0-.76,3.76,9,9,0,0,0,.76,3.6A10.51,10.51,0,0,0,166.41,26.29Z"/><rect class="cls-2" x="164.46" y="41.89" width="17.16" height="71.26"/><path class="cls-2" d="M227.51,54a28.87,28.87,0,0,1,4-.29,17.57,17.57,0,0,1,5.61.82,9.84,9.84,0,0,1,4.12,2.64A11.66,11.66,0,0,1,243.74,62a26.48,26.48,0,0,1,.86,7.26v43.95h17.16V66a26.35,26.35,0,0,0-2-10.63,23.13,23.13,0,0,0-5.58-7.92,24.24,24.24,0,0,0-8.31-4.95,30.37,30.37,0,0,0-10.33-1.72,29.73,29.73,0,0,0-6.47.69,32.66,32.66,0,0,0-5.77,1.85,33.69,33.69,0,0,0-4.91,2.61,28.89,28.89,0,0,0-3.83,2.9l-0.3-1.88q-0.17-1-.4-2c-0.16-.64-0.3-1.23-0.43-1.78a8.47,8.47,0,0,0-.4-1.29H196.83a43.07,43.07,0,0,1,.76,6.76q0.1,3.34.1,5.44v59.05h17.16V58.06a31.51,31.51,0,0,1,4-1.78q2.14-.79,4.35-1.38A36.38,36.38,0,0,1,227.51,54Z"/><path class="cls-2" d="M340.26,102.67a17.62,17.62,0,0,1-2,.2,7.09,7.09,0,0,1-2.44-.36,3.31,3.31,0,0,1-1.62-1.26,5.9,5.9,0,0,1-.89-2.44,23.58,23.58,0,0,1-.26-3.86V63.14a19.89,19.89,0,0,0-2.44-10.06,20.43,20.43,0,0,0-6.53-7,30,30,0,0,0-9.37-4,45.27,45.27,0,0,0-11-1.32,46.14,46.14,0,0,0-16.23,2.87,40.73,40.73,0,0,0-13.33,8l9,10.29a59.14,59.14,0,0,1,5.41-4.65,28.78,28.78,0,0,1,4.72-2.9,18.51,18.51,0,0,1,4.52-1.52,25.48,25.48,0,0,1,4.75-.43,18.26,18.26,0,0,1,5.41.76,11.07,11.07,0,0,1,4.19,2.34,10.74,10.74,0,0,1,2.74,4.09,16.36,16.36,0,0,1,1,6v2.57q-5.61,0-11,.46a73.07,73.07,0,0,0-10.26,1.58,43.76,43.76,0,0,0-8.94,3.06,25.23,25.23,0,0,0-7.06,4.92A21.32,21.32,0,0,0,274,85.28a25.36,25.36,0,0,0-1.68,9.6,23.1,23.1,0,0,0,1.45,8.54,16.32,16.32,0,0,0,4.16,6.13,17.66,17.66,0,0,0,6.53,3.73,27.7,27.7,0,0,0,8.64,1.26,44.68,44.68,0,0,0,5.84-.4,33,33,0,0,0,6-1.39,31.7,31.7,0,0,0,11.71-7,10.18,10.18,0,0,0,4.26,6.5,14.35,14.35,0,0,0,8.28,2.28,27.58,27.58,0,0,0,4.85-.4,28.82,28.82,0,0,0,4.09-1,23.92,23.92,0,0,0,3.53-1.48q1.65-.86,3.23-1.85L343,102.2Q341.71,102.47,340.26,102.67Zm-24.35-5.22a29.25,29.25,0,0,1-4.29,2.51,25.78,25.78,0,0,1-4.16,1.55,24.27,24.27,0,0,1-4,.76,37.57,37.57,0,0,1-3.8.2,13.62,13.62,0,0,1-3.76-.49,6.89,6.89,0,0,1-2.94-1.68,7.78,7.78,0,0,1-1.88-3.1,15,15,0,0,1-.66-4.81,17.2,17.2,0,0,1,1.12-6.31,11.51,11.51,0,0,1,4-5,22.93,22.93,0,0,1,7.79-3.46,59.56,59.56,0,0,1,12.57-1.65V97.45Z"/><path class="cls-2" d="M351,47.57q0,1.78.06,3.5c0,1.14,0,2.09,0,2.84v59.25h17.29l-0.13-46.65a22.76,22.76,0,0,1,7.16-7.65,19.87,19.87,0,0,1,14.12-2.54,17.56,17.56,0,0,1,3.92,1.35l3.69-15.51a19.56,19.56,0,0,0-2.84-.92,23.33,23.33,0,0,0-5.41-.46,16,16,0,0,0-6.1,1.32,28.65,28.65,0,0,0-6.1,3.46,32,32,0,0,0-5.28,4.92,22.42,22.42,0,0,0-3.63,5.67,126.22,126.22,0,0,0-2-14.25H350.59c0.09,0.53.16,1.31,0.23,2.34S350.93,46.38,351,47.57Z"/><path class="cls-2" d="M468,63.5a32.72,32.72,0,0,0-6.24-11.88A29.27,29.27,0,0,0,451,43.68a38.14,38.14,0,0,0-15.57-2.9,39.32,39.32,0,0,0-15.74,2.9,31.38,31.38,0,0,0-11.12,7.85A32.41,32.41,0,0,0,402,63a43.53,43.53,0,0,0-2.18,13.86,49.28,49.28,0,0,0,2.34,15.67,32.94,32.94,0,0,0,6.89,12,30.4,30.4,0,0,0,11.25,7.69,40.9,40.9,0,0,0,15.41,2.71A34.22,34.22,0,0,0,450,112a32.12,32.12,0,0,0,10.82-7.92,34.69,34.69,0,0,0,6.79-11.72A42.93,42.93,0,0,0,470,78.12,51.6,51.6,0,0,0,468,63.5ZM450.86,85.64a32.75,32.75,0,0,1-3,8.77,18.36,18.36,0,0,1-5.21,6.27,12.18,12.18,0,0,1-7.52,2.38,13.06,13.06,0,0,1-7.82-2.35,18.39,18.39,0,0,1-5.34-6,28.7,28.7,0,0,1-3-8.18,42.15,42.15,0,0,1-1-8.84A42.83,42.83,0,0,1,419,67.73a25.83,25.83,0,0,1,3.2-7.92,15.94,15.94,0,0,1,5.31-5.24,14.06,14.06,0,0,1,7.36-1.91,15.59,15.59,0,0,1,7.85,1.85,15.28,15.28,0,0,1,5.28,5A21.49,21.49,0,0,1,451,66.8a42.79,42.79,0,0,1,.89,8.88A50,50,0,0,1,450.86,85.64Z"/><path class="cls-3" d="M202.59,124.25H164.07a6.25,6.25,0,0,0-6.25,6.25V169a6.25,6.25,0,0,0,6.25,6.25h38.52a6.25,6.25,0,0,0,6.25-6.25V130.49A6.24,6.24,0,0,0,202.59,124.25Z"/><path class="cls-3" d="M266.66,124.25H228.15a6.25,6.25,0,0,0-6.25,6.25V169a6.25,6.25,0,0,0,6.25,6.25h38.52a6.25,6.25,0,0,0,6.25-6.25V130.49A6.25,6.25,0,0,0,266.66,124.25Z"/><path class="cls-3" d="M330.74,124.25H292.22a6.25,6.25,0,0,0-6.25,6.25V169a6.25,6.25,0,0,0,6.25,6.25h38.52A6.25,6.25,0,0,0,337,169V130.49A6.24,6.24,0,0,0,330.74,124.25Z"/><path class="cls-3" d="M394.8,124.25H356.29a6.25,6.25,0,0,0-6.25,6.25V169a6.25,6.25,0,0,0,6.25,6.25H394.8a6.25,6.25,0,0,0,6.25-6.25V130.49A6.25,6.25,0,0,0,394.8,124.25Z"/><path class="cls-3" d="M458.88,124.25H420.36a6.25,6.25,0,0,0-6.25,6.25V169a6.25,6.25,0,0,0,6.25,6.25h38.51a6.25,6.25,0,0,0,6.25-6.25V130.49A6.25,6.25,0,0,0,458.88,124.25Z"/><path class="cls-3" d="M138.65,124.32H100.07a6.26,6.26,0,0,0-6.26,6.26v38.58a6.26,6.26,0,0,0,6.26,6.26h38.58a6.26,6.26,0,0,0,6.26-6.26V130.57A6.25,6.25,0,0,0,138.65,124.32Z"/><path class="cls-4" d="M58.45,124.24H26.1a5.25,5.25,0,0,0-5.25,5.25v32.35a5.25,5.25,0,0,0,5.25,5.25H58.45a5.25,5.25,0,0,0,5.25-5.25V129.48A5.24,5.24,0,0,0,58.45,124.24Z"/><path class="cls-5" d="M66.1,195.29H39.71a4.28,4.28,0,0,0-4.28,4.28V226a4.28,4.28,0,0,0,4.28,4.28H66.1A4.28,4.28,0,0,0,70.38,226V199.57A4.28,4.28,0,0,0,66.1,195.29Z"/><rect class="cls-6" x="73.51" y="124.29" width="14.65" height="14.64" rx="1.79" ry="1.79"/><path class="cls-7" d="M107.27,150H61.68a7.39,7.39,0,0,0-7.4,7.39v45.59a7.4,7.4,0,0,0,7.4,7.39h45.59a7.39,7.39,0,0,0,7.39-7.39V157.34A7.39,7.39,0,0,0,107.27,150Z"/><rect class="cls-8" x="10" y="135.09" width="21.12" height="21.12" rx="2.59" ry="2.59"/></g></svg>
|
|
31
|
+
{% else %}
|
|
32
|
+
{{site.title}}
|
|
33
|
+
{% endif %}
|
|
34
|
+
</a>
|
|
35
|
+
{% endif %}
|
|
36
|
+
</div>
|
|
92
37
|
|
|
93
|
-
|
|
38
|
+
<!-- NAVBAR COLLAPSE-->
|
|
39
|
+
<div class="collapse navbar-collapse" id="navbar-collapse">
|
|
40
|
+
<ul class="nav navbar-nav navbar-right" id="navbar-buttons">
|
|
41
|
+
{% for section in site.data.nav.pages %}
|
|
42
|
+
{% if section.options %}
|
|
43
|
+
<li class="dropdown menu
|
|
44
|
+
{% for menu-item in section.options %}
|
|
45
|
+
{% if page.url == menu-item.url %}
|
|
46
|
+
active
|
|
47
|
+
{% endif %}
|
|
48
|
+
{% endfor %}">
|
|
49
|
+
<a href="{% if section.url %}{{section.url}}{% endif %}" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
|
|
50
|
+
{{section.title}} <span class="caret"></span>
|
|
51
|
+
</a>
|
|
52
|
+
<ul class="dropdown-menu menu">
|
|
53
|
+
{% for menu_option in section.options %}
|
|
54
|
+
{% if menu_option.options %}
|
|
55
|
+
<li class="dropdown-submenu sub-menu">
|
|
56
|
+
<a tabindex="-1" href="{% if menu_option.url %}{{menu_option.url}}{% endif %}" class="m\obile-link-inactive">{{menu_option.text}}</a>
|
|
57
|
+
<ul class="dropdown-menu sub-menu">
|
|
58
|
+
{% for sub-option in menu_option.options %}
|
|
59
|
+
{% if sub-option.options %}
|
|
60
|
+
<li class="dropdown-submenu">
|
|
61
|
+
<a href="{% if sub-option.url %}{{sub-option.url}}{% endif %}">{{sub-option.text}}</a>
|
|
62
|
+
<ul class="dropdown-menu">
|
|
63
|
+
{% for sub-sub-option in sub-option.options %}
|
|
64
|
+
<li><a href="{{sub-sub-option.url}}">{{sub-sub-option.text}}</a></li>
|
|
65
|
+
{% endfor %}
|
|
66
|
+
</ul>
|
|
67
|
+
</li>
|
|
68
|
+
{% else %}
|
|
69
|
+
<li><a href="{{sub-option.url}}">{{sub-option.text}}</a></li>
|
|
70
|
+
{% endif %}
|
|
71
|
+
{% endfor %}
|
|
72
|
+
</ul>
|
|
73
|
+
</li>
|
|
74
|
+
{% else %}
|
|
75
|
+
<li>
|
|
76
|
+
<a target="_self" href="{{menu_option.url}}" class="dropdown-item " title="{{menu_option.txt}}">{{menu_option.text}} {% if menu_option.external %}<i class="glyphicon glyphicon-new-window pull-right"></i>{% endif %}</a>
|
|
77
|
+
</li>
|
|
78
|
+
{% endif %}
|
|
79
|
+
{% endfor %}
|
|
80
|
+
</ul>
|
|
81
|
+
</li>
|
|
82
|
+
{% else %}
|
|
83
|
+
<li {% if section.url == page.permalink %}
|
|
84
|
+
class="active"
|
|
85
|
+
{% endif %}
|
|
86
|
+
><a href="{{section.url}}" title="{{section.title}}">{{section.title}}</a></li>
|
|
87
|
+
{% endif %}
|
|
88
|
+
{% endfor %}
|
|
89
|
+
|
|
90
|
+
<li id="search-menu-item">
|
|
91
|
+
<a href="#search" class="dropdown-toggle" id="search_icon">
|
|
92
|
+
<i class="glyphicon glyphicon-search"></i>
|
|
93
|
+
</a>
|
|
94
|
+
|
|
95
|
+
</li>
|
|
96
|
+
|
|
97
|
+
</ul>
|
|
98
|
+
|
|
99
|
+
<div id="search_bar">
|
|
100
|
+
|
|
101
|
+
<form class="form-inline" action="/search/" method="GET" target="_self" id="search_form">
|
|
102
|
+
<div class="input-group">
|
|
103
|
+
<input type="text" name="s" class="form-control" placeholder="Search...">
|
|
104
|
+
<span class="input-group-btn">
|
|
105
|
+
<!--Reset-->
|
|
106
|
+
<button type="reset" class="btn btn-default" id="search_close">
|
|
107
|
+
<span class="glyphicon glyphicon-remove">
|
|
108
|
+
<span class="sr-only">Close</span>
|
|
109
|
+
</span>
|
|
110
|
+
</button>
|
|
111
|
+
</span>
|
|
112
|
+
<span class="input-group-btn">
|
|
113
|
+
<!--Search-->
|
|
114
|
+
<button type="submit" class="btn btn-default" id="search_search">
|
|
115
|
+
<span class="glyphicon glyphicon-search">
|
|
116
|
+
<span class="sr-only">Close</span>
|
|
117
|
+
</span>
|
|
118
|
+
</button>
|
|
119
|
+
</span>
|
|
120
|
+
<input type="hidden" name="fields.label" value="{{ site.data.company.search-label }}">
|
|
121
|
+
</div>
|
|
122
|
+
</form>
|
|
123
|
+
|
|
94
124
|
</div>
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
125
|
+
|
|
126
|
+
</div>
|
|
127
|
+
|
|
98
128
|
</div>
|
|
129
|
+
</nav>
|
|
99
130
|
<!--- Page Start Main Container--->
|
|
100
|
-
<div id="main-container">
|
|
131
|
+
<div id="main-container" class="{% if page.home %}home-container{% endif %}">
|
data/_sass/core/nav.scss
CHANGED
|
@@ -568,7 +568,7 @@ div#search_bar {
|
|
|
568
568
|
text-align:right;
|
|
569
569
|
height: 66px;
|
|
570
570
|
display: none;
|
|
571
|
-
background-color:
|
|
571
|
+
background-color: $navbar-inverse-bg;
|
|
572
572
|
z-index: 99999;
|
|
573
573
|
}
|
|
574
574
|
|
|
@@ -581,7 +581,8 @@ div#search_bar input {
|
|
|
581
581
|
border:0;
|
|
582
582
|
text-align: right;
|
|
583
583
|
font-size: 26px;
|
|
584
|
-
color:
|
|
584
|
+
background-color: $navbar-inverse-bg;
|
|
585
|
+
color: $navbar-base-text-color;
|
|
585
586
|
}
|
|
586
587
|
|
|
587
588
|
div#search_bar input:focus {
|
|
@@ -601,29 +602,29 @@ div#search_bar button {
|
|
|
601
602
|
border-radius: 0px;
|
|
602
603
|
right: 0;
|
|
603
604
|
height: 66px;
|
|
604
|
-
background-color:
|
|
605
|
+
background-color: $navbar-inverse-bg;
|
|
605
606
|
border:0;
|
|
606
|
-
color:
|
|
607
|
+
color: $navbar-base-text-color;
|
|
607
608
|
}
|
|
608
609
|
div#search_bar button:hover {
|
|
609
|
-
background-color:
|
|
610
|
-
color:
|
|
610
|
+
background-color: $navbar-base-text-color;
|
|
611
|
+
color: $navbar-inverse-bg;
|
|
611
612
|
}
|
|
612
613
|
|
|
613
614
|
div#search_bar input::-webkit-input-placeholder {
|
|
614
|
-
color:
|
|
615
|
+
color: $navbar-base-text-color !important;
|
|
615
616
|
}
|
|
616
617
|
|
|
617
618
|
div#search_bar input:-moz-placeholder { /* Firefox 18- */
|
|
618
|
-
color:
|
|
619
|
+
color: $navbar-base-text-color !important;
|
|
619
620
|
}
|
|
620
621
|
|
|
621
622
|
div#search_bar input::-moz-placeholder { /* Firefox 19+ */
|
|
622
|
-
color:
|
|
623
|
+
color: $navbar-base-text-color !important;
|
|
623
624
|
}
|
|
624
625
|
|
|
625
626
|
div#search_bar input:-ms-input-placeholder {
|
|
626
|
-
color:
|
|
627
|
+
color: $navbar-base-text-color !important;
|
|
627
628
|
}
|
|
628
629
|
|
|
629
630
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linaro-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.2.
|
|
4
|
+
version: 0.1.2.59
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-12-
|
|
11
|
+
date: 2017-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|