kcc-gem-theme 0.7.21 → 0.7.22
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-sub.html +11 -0
- data/_layouts/sub-nav.html +26 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d52c37c959e3c30cbecca96ccdb4b2708b3dbc475d1ea7f41848019105baa9c
|
4
|
+
data.tar.gz: 132273232c72f8bb18a1706546ddaedb33901680040db27713be93765555e3e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f41921a25d9de2ad3d904b4cfbb9efff2662635e70279a17948b9bc2a1dad5fbcccc255b2e5e5e939c1b4d9d3f58ebbbe10a7eab51e25b9244221c704a43c9e6
|
7
|
+
data.tar.gz: 72768625b79ef6b2d823f9815b62f10a2d622a371b5acb4d3b9c7bdafcf6220d739a23ad115b830125a6a405d3fba54cf5c42bc72f331f9284fed6d74365e239
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="container position__sub-nav--offset-fixed-nav">
|
2
|
+
<div class="row">
|
3
|
+
<div class="col">
|
4
|
+
<nav class="navbar navbar-light bg-light sub-nav__navbar">
|
5
|
+
<a class="navbar-brand" href="#"><h3 class="typography__sub-nav--red-h3">{{ page.title }}</h3></a>
|
6
|
+
<ul id="subNavNav" class="nav ml-auto">
|
7
|
+
</ul>
|
8
|
+
</nav>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
{% include document-head.html %}
|
2
|
+
{% include scripts/google-tag.html %}
|
3
|
+
{% include styles/fonts.html %}
|
4
|
+
{% include styles/vendor.html %}
|
5
|
+
{% if page.sheet_key %}
|
6
|
+
<!-- dataTables stylesheets -->
|
7
|
+
<!-- dataTables Bootstrap4 themed stylesheet -->
|
8
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css" crossorigin="anonymous">
|
9
|
+
<!-- dataTables "Responsive" extension stylesheet for bootstrap4 theme -->
|
10
|
+
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.2/css/responsive.bootstrap4.min.css" crossorigin="anonymous">
|
11
|
+
{% endif %}
|
12
|
+
{% include styles/main.html %}
|
13
|
+
{% include body.html %}
|
14
|
+
{% include scripts/google-noscript.html %}
|
15
|
+
{% include nav-global.html %}
|
16
|
+
{% include nav-local.html %}
|
17
|
+
{% include nav-sub.html %}
|
18
|
+
{{ content }}
|
19
|
+
{% include footer.html %}
|
20
|
+
{% include scripts/vendor-cdn.html %}
|
21
|
+
{% include scripts/kcc-theme.html %}
|
22
|
+
{% if page.sheet_key %}
|
23
|
+
{% include scripts/table-cdn.html %}
|
24
|
+
{% endif %}
|
25
|
+
{% include scripts/custom.html %}
|
26
|
+
{% include foot.html %}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kcc-gem-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wdzajicek
|
@@ -71,6 +71,7 @@ files:
|
|
71
71
|
- _includes/nav-global.html
|
72
72
|
- _includes/nav-landing.html
|
73
73
|
- _includes/nav-local.html
|
74
|
+
- _includes/nav-sub.html
|
74
75
|
- _includes/old-head.html
|
75
76
|
- _includes/scripts/custom.html
|
76
77
|
- _includes/scripts/google-noscript.html
|
@@ -89,6 +90,7 @@ files:
|
|
89
90
|
- _layouts/default.html
|
90
91
|
- _layouts/landing-page.html
|
91
92
|
- _layouts/page.html
|
93
|
+
- _layouts/sub-nav.html
|
92
94
|
- assets/css/content.css
|
93
95
|
- assets/css/kcc-theme.css
|
94
96
|
- assets/css/main.css
|