jumbo-jekyll-theme 1.4.2.7 → 1.4.2.8
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/_data/settings.yml +6 -1
- data/_includes/jumbotron.html +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 721ccf3e38d088b7e225806d347a2cf2dab9c100
|
|
4
|
+
data.tar.gz: 0a02f911a9ae10ada7bca71d794578c0b82acb4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4194e86e4be2e9f97dc53c66b0879df825e73760fafd74d356fc6dc506fd95b6798aca24b5164f31f37dbdb9bd29b84c1aa9b8b75359114845deadf3a1879e1e
|
|
7
|
+
data.tar.gz: 83dc9a00d6811df9d8f108501e3e8f59507760c6f269939ba50dd568d988024bbd63fda159e6110e24dced6f92412f857984917a1e1de1d3490903ec1fae6e0e
|
data/_data/settings.yml
CHANGED
|
@@ -39,7 +39,12 @@ home:
|
|
|
39
39
|
url:
|
|
40
40
|
class: btn btn-primary btn-lg fade-in-three bottom-border-five
|
|
41
41
|
# Background image for the home page located in assets/images
|
|
42
|
-
background-image:
|
|
42
|
+
background-image:
|
|
43
|
+
# Darken is set to true by default - if you wish to remove the image overlay
|
|
44
|
+
# then change this setting to false.
|
|
45
|
+
darken: true
|
|
46
|
+
# This is the name of the background-image located in /assets/images/
|
|
47
|
+
name: background-image.jpg
|
|
43
48
|
# image: devicetree-icon-white.png
|
|
44
49
|
|
|
45
50
|
# Jekyll social media site settings. Github, LinkedIn, Google+, Facebook and Youtube
|
data/_includes/jumbotron.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<div class="container-fluid" id="homepage-header"
|
|
2
|
-
{% if site.data.settings.home.jumbotron.background-image %}
|
|
3
|
-
style="background-image: url('{% asset_path '{{site.data.settings.home.jumbotron.background-image}}' %}');"
|
|
2
|
+
{% if site.data.settings.home.jumbotron.background-image.name %}
|
|
3
|
+
style="background-image: url('{% asset_path '{{site.data.settings.home.jumbotron.background-image.name}}' %}');"
|
|
4
4
|
{% else %}
|
|
5
5
|
class="jumbotron text-center featured-jumbotron"
|
|
6
6
|
{% endif %}> <!--Fluid Container -->
|
|
7
|
-
<div class="row overlay"> <!--Row -->
|
|
7
|
+
<div class="row {% if site.data.settings.home.jumbotron.background-image.darken %}overlay{% endif %}"> <!--Row -->
|
|
8
8
|
<div id="featured-jumbotron"> <!--Jumbotron div -->
|
|
9
9
|
<div class="container" id="jumbotron-text"> <!--Container -->
|
|
10
10
|
|