landing-page-gem 0.3.1 → 0.3.2
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/custom-theme.html +4 -1
- data/_includes/styles/main.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b08eb22afbef0399d9c615b85fb73c9d3228c5b16b54f39d1d3c304e96d596ba
|
4
|
+
data.tar.gz: 2d82c791e43e4312be0522b640433c42d07a85f8fce1a47d9d046de495f8df97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e90a0e311adea956c3df934575cbdd4ffcb4fa6de8e0f5da81e4e6dc25c638231791a0b19acb337463b4cd9fcfa2a980fc51676ef43e5f3f1b523a44003217cd
|
7
|
+
data.tar.gz: 75ad1c64654ad4a6c03243bb804ecb267c1db3d8bbc495f9ccbae024a56c92358d214d95bf3b89f86064702520ddfae669756a6e40fcbd5ff2a70d290695154f
|
@@ -1,3 +1,6 @@
|
|
1
1
|
|
2
2
|
<!-- custom compiled and minified javascript -->
|
3
|
-
<script src="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js" defer></script>
|
3
|
+
<script src="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.bundle.js" defer></script>
|
4
|
+
{% if site.custom_js == true %}
|
5
|
+
<script src="{{ page.baseurl }}assets/js/dist/main.{% if site.data.hash %}{{ site.data.hash }}.{% endif %}bundle.js" defer></script>
|
6
|
+
{% endif %}
|
data/_includes/styles/main.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{%- if jekyll.environment == "production" or jekyll.environment == "publish" -%}
|
2
2
|
<!-- Custom CSS for the KCC Theme -->
|
3
3
|
<link rel="stylesheet" href="{{page.baseurl}}assets/js/dist/kcc-landing-page.{% include hash/landing.yml %}.css">
|
4
|
-
{%- if site.
|
4
|
+
{%- if site.custom_styling == true -%}
|
5
5
|
<!-- Link to this site's main stylesheet -->
|
6
6
|
<link rel="stylesheet" href="{{page.baseurl}}assets/js/dist/main{% if site.data.hash %}.{{ site.data.hash }}{% endif %}.css">
|
7
7
|
{% endif %}
|