jumbo-jekyll-theme 3.0.15 → 3.0.16
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/jumbotron.html +11 -3
- data/_sass/home.scss +0 -3
- 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: 96196e8aa9c66157e485fa44754ac48bd17402a3b149885f0de14ff7a752a7e0
|
|
4
|
+
data.tar.gz: 4830c1eb7eaa9ab311781ff216420c4bea749842ba7196fa86461095f203542f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 527a8891109695b57d7bc688de39568bfa15b080818092e0b477ff10cf2a9b3e452d80fb4357040719bc25b8d4cc72f4859440bfa65c47fecaf27a8b8f399e7e
|
|
7
|
+
data.tar.gz: 17ec772f88354277ec91464d0426b68925f4a08c45962940c4dc689c1583062420b4029ec6e41899e7879f41fb263a87a3840221a18521a7a5d7707a1292e2bf
|
data/_includes/jumbotron.html
CHANGED
|
@@ -6,16 +6,24 @@
|
|
|
6
6
|
{% endif %}> <!--Row -->
|
|
7
7
|
<div id="jumbotron-content" class=" flex-container"> <!--Jumbotron div -->
|
|
8
8
|
<div class="container flex-center" id="jumbotron-text"> <!--Container -->
|
|
9
|
-
{% if page.title %}
|
|
9
|
+
{% if page.jumbotron.title %}
|
|
10
|
+
<h1 class="{% if page.jumbotron.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
|
11
|
+
{{page.jumbotron.title}}
|
|
12
|
+
</h1>
|
|
13
|
+
{% elsif page.title %}
|
|
10
14
|
<h1 class="{% if page.jumbotron.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
|
11
15
|
{{page.title}}
|
|
12
16
|
</h1>
|
|
13
|
-
{%
|
|
17
|
+
{% else %}
|
|
14
18
|
<h1 class="{% if page.jumbotron.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
|
15
19
|
{{site.title}}
|
|
16
20
|
</h1>
|
|
17
21
|
{% endif %}
|
|
18
|
-
{% if page.description %}
|
|
22
|
+
{% if page.jumbotron.description %}
|
|
23
|
+
<p class="center-block {% if page.jumbotron.animation == "fade" %}fade-in-two{% endif %}" id="jumbotron-sub-title">
|
|
24
|
+
{{page.jumbotron.description}}
|
|
25
|
+
</p>
|
|
26
|
+
{% elsif page.description %}
|
|
19
27
|
<p class="center-block {% if page.jumbotron.animation == "fade" %}fade-in-two{% endif %}" id="jumbotron-sub-title">
|
|
20
28
|
{{page.description}}
|
|
21
29
|
</p>
|
data/_sass/home.scss
CHANGED