jumbo-jekyll-theme 3.2.3.7 → 3.3

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: 3a74a1bc1e12b5003f3d0d45363205d04bf5cbc4a064e8a3c6f222b966307b66
4
- data.tar.gz: 35fecd53605ee5df7eb1a4800e24873943184b708406dc743f9c0bb233bb4ded
3
+ metadata.gz: 789beec7ac7d270b69231172c0c7961b6367ea66e548539f4671caee11733fd4
4
+ data.tar.gz: 1aa636a245765fd0e930f2c504606ca12447e955b634e2a447ef8c1ed02dac19
5
5
  SHA512:
6
- metadata.gz: d439ee2ceeed19abca4ccf818a29565eabff3a232595a34a351b4be10fcdda209effbaec9a955a0f3310594c8859c85337b0e1265c7080c4a08beece36614043
7
- data.tar.gz: 131653808a2a0c156f5bce2eac3a147d1aee82904e6084ff9ba02491b9ade97c10d4cf2dab1f32a68fd3437c493029f005811398821bb38a86d6fc454cb5e1e4
6
+ metadata.gz: e0858820bf9949df66e02ed0452ccf06011816f33279463ce4ff451b92def0bd760b1a5170967f60d9fd4134f00eaf6fc5c27a372c83f6fdc44c8c7dc83f2ff8
7
+ data.tar.gz: fc9d252a9d18f59edd5cc13c1fdc11ab2ea29f79d559d02c01b493f20b5b92941e60834a85bbe381663b32eec6ccd030a0f61c0e58ab7c1fbb5c105aa32f215b
@@ -0,0 +1,21 @@
1
+ - title: Linaro
2
+ url: https://www.linaro.org/
3
+ - title: Connect
4
+ url: https://connect.linaro.org
5
+ - title: 96Boards
6
+ url: https://www.96boards.org
7
+ - title: Developer Cloud
8
+ url: https://linaro.cloud
9
+ - title: Projects
10
+ options:
11
+ - title: 96Boards.ai
12
+ url: https://www.96boards.ai
13
+ - title: OP-TEE
14
+ url: https://www.op-tee.org
15
+ - title: DeviceTree.org
16
+ url: https://www.devicetree.org
17
+ - title: OpenDataPlane.org
18
+ url: https://www.opendataplane.org
19
+ - title: TrustedFirmware.org
20
+ url: https://www.trustedfirmware.org
21
+ active: true
@@ -9,19 +9,21 @@
9
9
  </div>
10
10
  <div id="navbar" class="navbar-collapse collapse" aria-expanded="false" style="height: 1px;">
11
11
  <ul class="nav navbar-nav navbar-right">
12
- <li {% if site.title == "Linaro" %}class="active"{% endif %}><a class="linaro" target="_self" href="https://www.linaro.org">Linaro</a></li>
13
- <li {% if site.name == "Linaro Connect" %}class="active"{% endif %}><a class="connect" target="_self" href="https://connect.linaro.org">Connect</a></li>
14
- <li {% if site.title == "96Boards" %}class="active"{% endif %}><a class="boards" target="_self" href="https://www.96boards.org">96Boards</a></li>
15
- <li {% if site.title == "Developer Cloud" %}class="active"{% endif %}><a class="dev-cloud" target="_blank" href="https://linaro.cloud">Developer Cloud</a></li>
16
- <li {% if site.title == "OP-TEE" %}class="dropdown active"{% elsif site.title == "DeviceTree" %}class="dropdown active"{% elsif site.title == "96Boards.ai"%}class="dropdown active"{% elsif site.title == "The OpenDataPlane Project" %}class="dropdown active"{% else %}class="dropdown"{% endif %}">
17
- <a class="projects" href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Projects <span class="caret"></span></a>
18
- <ul class="dropdown-menu">
19
- <li><a target="_self" href="https://www.96boards.ai">96Boards.ai</a></li>
20
- <li><a target="_self" href="https://www.op-tee.org">OP-TEE.org</a></li>
21
- <li><a target="_self" href="https://www.devicetree.org">DeviceTree.org</a></li>
22
- <li><a target="_self" href="https://www.opendataplane.org">OpenDataPlane.org</a></li>
23
- </ul>
24
- </li>
12
+ {% for website in site.data.universal-nav %}
13
+ {% if website.options %}
14
+ <li class="dropdown {% for project-site in website.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
15
+ <a class="projects" href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
16
+ aria-expanded="false">Projects <span class="caret"></span></a>
17
+ <ul class="dropdown-menu">
18
+ {% for project-site in website.options %}
19
+ <li {% if project-site.active %}class="active" {% endif%}><a target="_self" href="{{project-site.url}}">{{project-site.title}}</a></li>
20
+ {% endfor %}
21
+ </ul>
22
+ </li>
23
+ {% else %}
24
+ <li {% if website.active %}class="active" {% endif %}><a class="linaro" target="_self" href="{{website.url}}">{{website.title}}</a></li>
25
+ {% endif %}
26
+ {% endfor %}
25
27
  </ul>
26
28
  </div>
27
29
  </nav>
@@ -674,6 +674,7 @@ ul {
674
674
  border: 1px solid #9e9e9e;
675
675
  margin-left: auto;
676
676
  margin-right: auto;
677
+ border-radius: 0;
677
678
  transition: all 200ms ease;
678
679
  }
679
680
  .container-fluid .email:hover {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3.7
4
+ version: '3.3'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-04 00:00:00.000000000 Z
11
+ date: 2019-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -355,6 +355,7 @@ files:
355
355
  - _data/settings.yml
356
356
  - _data/sidebar-nav.yml
357
357
  - _data/sticky-tab-bar.yml
358
+ - _data/universal-nav.yml
358
359
  - _includes/author-pagination.html
359
360
  - _includes/authors-posts.html
360
361
  - _includes/breadcrumb.html