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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eea5da6b5b4934a14ca077ff8b92f5ba5db1eaefb52505875fce42020f02084e
4
- data.tar.gz: 8f087514621e20262ef2e520d249e71f7ac09e9d58afc8c3fa2f09fdfafe8246
3
+ metadata.gz: 7fde3bbeaf810c8f6d655a4b80166db21ac48ee3ba655603a612cba4a22f1bfa
4
+ data.tar.gz: 3aaf9aa293e988e44955fbf10bdfb7e1a27cedefd1d3c6c01ff7062fc2321a62
5
5
  SHA512:
6
- metadata.gz: 657cadf28e884d7b7828d0f5af4b648cde14ccd30c792fd4f9d47b5f5dddec7b324a3940011416335ea15111d6eba2e285d98a0e756078c93bc269c49fadb4a5
7
- data.tar.gz: e32e274ade2a3c4f6d5cf8e5bc54843192633688d572054f56f756cdf299918b897286f151a186f17f8ceb27d3e314a908855f4d71b2131d25836f7fa417e28e
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
- middle-column:
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
- last-column:
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
- 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/
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
- 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/
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
@@ -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.middle-column.title}}</h3>
16
+ <h3>{{site.data.footer.second-column.title}}</h3>
14
17
  <ul class="list-group">
15
- {% if site.data.footer.middle-column.latest-posts %}
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.middle-column.items %}
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.last-column.title}}</h3>
32
+ <h3>{{site.data.footer.third-column.title}}</h3>
28
33
  <ul class="list-group">
29
- {% for item in site.data.footer.last-column.items %}
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: $gray-darker !default;
45
+ $footer-bg-color: #131313 !default;
46
46
  $footer-text-color: #fff !default;
47
47
  $sub-footer-color: #E5E5E5 !default;
48
48
 
@@ -1,5 +1,4 @@
1
1
  // Footer List Groups
2
- $footer-bg-color: #1c1c1c;
3
2
  #wrapper {
4
3
  footer {
5
4
  a {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.6.1
4
+ version: 4.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby