jumbo-jekyll-theme 4.6.1 → 4.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/footer.yml +4 -2
- data/_data/nav.yml +20 -22
- data/_includes/footer.html +11 -5
- data/_sass/bootstrap/_variables.scss +1 -1
- data/_sass/core/footer.scss +0 -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: 7fde3bbeaf810c8f6d655a4b80166db21ac48ee3ba655603a612cba4a22f1bfa
|
4
|
+
data.tar.gz: 3aaf9aa293e988e44955fbf10bdfb7e1a27cedefd1d3c6c01ff7062fc2321a62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcf8e887d878dd7ce6a325ab451d92ec838b70f36d415d24b81d22545fb9bd2dbd62acf54067ee8d17bad9c603c9571a5c21ad490655b6572267d47aeed135be
|
7
|
+
data.tar.gz: a821038c71f6447a6691beda68a12046697d697cdd14cec33d01d5ffdf66189d31a58f2f1984efc83d9429d76e67b01e94b49ec0d14a7cb3d26bab246d3e38b8
|
data/_data/footer.yml
CHANGED
@@ -4,6 +4,8 @@ copyright-text: Jumbo Jekyll Theme
|
|
4
4
|
linaro-branding: true
|
5
5
|
# Social Media Icons Row
|
6
6
|
social-media-icons: true
|
7
|
+
# Display the contact details section
|
8
|
+
display-contact-details: true
|
7
9
|
# These links are displayed at the very bottom of the footer.
|
8
10
|
company-links:
|
9
11
|
- name: Legal
|
@@ -12,7 +14,7 @@ company-links:
|
|
12
14
|
url: /contact/
|
13
15
|
- name: Press
|
14
16
|
url: /press/
|
15
|
-
|
17
|
+
second-column:
|
16
18
|
title: Latest News & Blogs
|
17
19
|
latest-posts: true
|
18
20
|
# Optionally display another list of items
|
@@ -28,7 +30,7 @@ middle-column:
|
|
28
30
|
# - name: Linaro Developer Cloud
|
29
31
|
# url: https://www.linaro.cloud
|
30
32
|
# Custom Col on the right
|
31
|
-
|
33
|
+
third-column:
|
32
34
|
title: Other Projects
|
33
35
|
items:
|
34
36
|
- name: 96Boards
|
data/_data/nav.yml
CHANGED
@@ -17,32 +17,32 @@ pages:
|
|
17
17
|
active_paths:
|
18
18
|
- /new/
|
19
19
|
options:
|
20
|
-
- text: Plugins
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
20
|
+
# - text: Plugins
|
21
|
+
# options:
|
22
|
+
# - text: Jekyll Assets
|
23
|
+
# url: /jekyll/plugins/assets/
|
24
|
+
# - text: Jekyll Assets
|
25
|
+
# url: /jekyll/plugins/assets/
|
26
|
+
# - text: Jekyll Assets
|
27
|
+
# url: /jekyll/plugins/assets/
|
28
28
|
- text: Includes
|
29
29
|
url: /jekyll/includes/
|
30
30
|
- title: Layouts
|
31
31
|
options:
|
32
32
|
- text: Default
|
33
33
|
url: /layouts/default/
|
34
|
-
- text: Jumbotron
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
34
|
+
# - text: Jumbotron
|
35
|
+
# options:
|
36
|
+
# - text: Overview
|
37
|
+
# url: /layouts/jumbotron/
|
38
|
+
# - text: Carousel Header
|
39
|
+
# url: /layouts/jumbotron/carousel-header/
|
40
|
+
# - text: Video Header
|
41
|
+
# url: /layouts/jumbotron/video-header/
|
42
|
+
# - text: Background Image Header
|
43
|
+
# url: /layouts/jumbotron/background-image-header/
|
44
|
+
# - text: Slider Header
|
45
|
+
# url: /layouts/jumbotron/slider-header/
|
46
46
|
|
47
47
|
|
48
48
|
- title: About
|
@@ -57,8 +57,6 @@ pages:
|
|
57
57
|
options:
|
58
58
|
- text: Bootstrap
|
59
59
|
url: /css/bootstrap/
|
60
|
-
|
61
|
-
|
62
60
|
- title: JS
|
63
61
|
options:
|
64
62
|
- text: JQuery
|
data/_includes/footer.html
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
<footer>
|
2
2
|
<div class="row footer footer-main p-t-40">
|
3
3
|
<div class="container">
|
4
|
+
{% if site.data.footer.display-contact-details %}
|
4
5
|
<div class="col-xs-12 col-sm-3 contact-details">
|
5
6
|
<address>
|
6
7
|
<a class="email" href="mailto:{{site.email}}?subject={{site.url}} - {{page.url}}">{{site.email}}</a> <br>
|
@@ -9,13 +10,15 @@
|
|
9
10
|
{% endfor %}
|
10
11
|
</address>
|
11
12
|
</div>
|
13
|
+
{% endif %}
|
14
|
+
{% if site.data.footer.second-column %}
|
12
15
|
<div class="col-xs-12 col-sm-3 footer-column">
|
13
|
-
<h3>{{site.data.footer.
|
16
|
+
<h3>{{site.data.footer.second-column.title}}</h3>
|
14
17
|
<ul class="list-group">
|
15
|
-
{% if site.data.footer.
|
18
|
+
{% if site.data.footer.second-column.latest-posts %}
|
16
19
|
{% include_cached latest-posts.html %}
|
17
20
|
{% else %}
|
18
|
-
{% for item in site.data.footer.
|
21
|
+
{% for item in site.data.footer.second-column.items %}
|
19
22
|
<li class="list-group-item">
|
20
23
|
<a href="{{item.url}}">{{item.name}}</a>
|
21
24
|
</li>
|
@@ -23,16 +26,19 @@
|
|
23
26
|
{% endif %}
|
24
27
|
</ul>
|
25
28
|
</div>
|
29
|
+
{% endif %}
|
30
|
+
{% if site.data.footer.third-column %}
|
26
31
|
<div class="col-xs-12 col-sm-3 footer-column">
|
27
|
-
<h3>{{site.data.footer.
|
32
|
+
<h3>{{site.data.footer.third-column.title}}</h3>
|
28
33
|
<ul class="list-group">
|
29
|
-
{% for item in site.data.footer.
|
34
|
+
{% for item in site.data.footer.third-column.items %}
|
30
35
|
<li class="list-group-item">
|
31
36
|
<a href="{{item.url}}">{{item.name}}</a>
|
32
37
|
</li>
|
33
38
|
{% endfor %}
|
34
39
|
</ul>
|
35
40
|
</div>
|
41
|
+
{% endif %}
|
36
42
|
{% if site.data.footer.social-media-icons %}
|
37
43
|
<div class="col-xs-12 col-sm-3 footer-column footer-follow-section">
|
38
44
|
<h3>Follow us</h3>
|
@@ -42,7 +42,7 @@ $cookie-consent-btn-bg: $brand-primary !default;
|
|
42
42
|
|
43
43
|
// Footer Colour
|
44
44
|
$footer-border-color: #eee !default;
|
45
|
-
$footer-bg-color:
|
45
|
+
$footer-bg-color: #131313 !default;
|
46
46
|
$footer-text-color: #fff !default;
|
47
47
|
$sub-footer-color: #E5E5E5 !default;
|
48
48
|
|
data/_sass/core/footer.scss
CHANGED