kcc-gem-theme 0.7.2 → 0.7.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 +4 -4
- data/_includes/scripts/table-cdn.html +6 -0
- data/_includes/styles/fonts.html +1 -1
- data/_layouts/default-landing.html +10 -0
- data/_layouts/default.html +10 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ab30be3980dc38716766f7f5fe425a3d7e990a9430fce208d0b8c0e823f92a4
|
4
|
+
data.tar.gz: 4b12a1fd67ac508319230dcc8dc56cc4212b8d6b0f2ebea399269cb2cbd2d961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdcc9ccfa5cfe5db8c56213b3aaac0b09cd9e15dc88141f2d35fd0aa8b6cb4b2570401d454c02c1d0f9ec00537c71e8a957c887a86d64e31683b0481dc05913f
|
7
|
+
data.tar.gz: 983deecdbbbb4e2c3fbb4a5f863cf74089fe53d6f26b0ffee17dfc3488b65ffd25e8985b13fc76c55c1ac009d8bc1848c7a9e3a4988ad4a855fef100f0ec8c84
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<!-- dataTable's JS (v1.10.18 for use w/ bootstrap4 theme) -->
|
2
|
+
<script src="https://cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js" crossorigin="anonymous"></script>
|
3
|
+
<!-- dataTable's Bootstrap4 theme's JS -->
|
4
|
+
<script src="https://cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js" crossorigin="anonymous"></script>
|
5
|
+
<!-- dataTable's JS for "Responsive" extension -->
|
6
|
+
<script src="https://cdn.datatables.net/responsive/2.2.2/js/dataTables.responsive.min.js" crossorigin="anonymous"></script>
|
data/_includes/styles/fonts.html
CHANGED
@@ -7,5 +7,5 @@
|
|
7
7
|
<!-- Link to Google Font's "Oswald" font -->
|
8
8
|
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400,500,600" rel="stylesheet">
|
9
9
|
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin:300,500,700" rel="stylesheet">
|
10
|
-
<link href="https://fonts.googleapis.com/css?family=Saira:
|
10
|
+
<link href="https://fonts.googleapis.com/css?family=Saira:700" rel="stylesheet">
|
11
11
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined" rel="stylesheet">
|
@@ -2,6 +2,13 @@
|
|
2
2
|
{% include scripts/google-tag.html %}
|
3
3
|
{% include styles/fonts.html %}
|
4
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 %}
|
5
12
|
{% include styles/main.html %}
|
6
13
|
{% include body.html %}
|
7
14
|
{% include scripts/google-noscript.html %}
|
@@ -11,5 +18,8 @@
|
|
11
18
|
{% include footer.html %}
|
12
19
|
{% include scripts/vendor-cdn.html %}
|
13
20
|
{% include scripts/kcc-theme.html %}
|
21
|
+
{% if page.sheet_key %}
|
22
|
+
{% include scripts/table-cdn.html %}
|
23
|
+
{% endif %}
|
14
24
|
{% include scripts/custom.html %}
|
15
25
|
{% include foot.html %}
|
data/_layouts/default.html
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
{% include scripts/google-tag.html %}
|
3
3
|
{% include styles/fonts.html %}
|
4
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 %}
|
5
12
|
{% include styles/main.html %}
|
6
13
|
{% include body.html %}
|
7
14
|
{% include scripts/google-noscript.html %}
|
@@ -11,5 +18,8 @@
|
|
11
18
|
{% include footer.html %}
|
12
19
|
{% include scripts/vendor-cdn.html %}
|
13
20
|
{% include scripts/kcc-theme.html %}
|
21
|
+
{% if page.sheet_key %}
|
22
|
+
{% include scripts/table-cdn.html %}
|
23
|
+
{% endif %}
|
14
24
|
{% include scripts/custom.html %}
|
15
25
|
{% include foot.html %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wdzajicek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -74,6 +74,7 @@ files:
|
|
74
74
|
- _includes/scripts/google-noscript.html
|
75
75
|
- _includes/scripts/google-tag.html
|
76
76
|
- _includes/scripts/kcc-theme.html
|
77
|
+
- _includes/scripts/table-cdn.html
|
77
78
|
- _includes/scripts/vendor-cdn.html
|
78
79
|
- _includes/styles/fonts.html
|
79
80
|
- _includes/styles/main.html
|