jumbo-jekyll-theme 3.0.2 → 3.0.4
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/_config.yml +8 -1
- data/_includes/jumbotron.html +5 -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: 4fca26cd30a3e6f01440fcc5114f3ad8cc0252257034b188a140f93772d1bf57
|
|
4
|
+
data.tar.gz: a173e9519ae0855dbd3706e0fc8fc9d3deb2d1e71b09bd4898ca955b84c4d515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 914c0656d952690f201ca057c5791b1c0949356e057dbe9d9bc6253ca0a6f1e83bff3d1ca9487c74813079f6da3b7fc708c512b39e07265ee95efbc9e39a443f
|
|
7
|
+
data.tar.gz: b81da00982b6315e1e1b7f8757edfdf8a5ab9454dbca0b5713200c9c6cb450f87986ba459ac01f7b7cebfc94060bc7b9565d82345d25867038858799830f700b
|
data/_config.yml
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
title: Jumbo Jekyll
|
|
3
3
|
# Description of the site used for default meta description
|
|
4
4
|
url: http://jumbojekyll.co.uk
|
|
5
|
+
baseurl: ""
|
|
5
6
|
description: |-
|
|
6
7
|
The Jumbo Jekyll Theme is used across all Linaro static sites.
|
|
7
8
|
# Destination of the Jekyll site upon build of site.
|
|
8
9
|
destination: _site
|
|
9
10
|
# Default permalink for blog posts
|
|
10
|
-
permalink:
|
|
11
|
+
permalink: /:categories/:title/
|
|
11
12
|
# Jumbo Jekyll Theme
|
|
12
13
|
theme: jumbo-jekyll-theme
|
|
13
14
|
# Syntax highlighter
|
|
@@ -93,6 +94,11 @@ defaults:
|
|
|
93
94
|
- Web Design
|
|
94
95
|
- Web Development
|
|
95
96
|
- Static Websites
|
|
97
|
+
- scope:
|
|
98
|
+
path: ""
|
|
99
|
+
type: "authors"
|
|
100
|
+
values:
|
|
101
|
+
layout: author
|
|
96
102
|
# Jekyll Assets setup
|
|
97
103
|
assets:
|
|
98
104
|
# Compress JS Assets - uses the uglifier
|
|
@@ -124,6 +130,7 @@ plugins:
|
|
|
124
130
|
collections:
|
|
125
131
|
authors:
|
|
126
132
|
output: true
|
|
133
|
+
permalink: /author/:name/
|
|
127
134
|
# Make sure that Liquid errors stop the build
|
|
128
135
|
liquid:
|
|
129
136
|
error_mode: strict
|
data/_includes/jumbotron.html
CHANGED
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
<h1 class="{% if page.carousel-header.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
|
11
11
|
{{page.title}}
|
|
12
12
|
</h1>
|
|
13
|
+
{% elsif site.title %}
|
|
14
|
+
<h1 class="{% if page.carousel-header.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
|
15
|
+
{{site.title}}
|
|
16
|
+
</h1>
|
|
17
|
+
{% endif %}
|
|
13
18
|
{% if page.description %}
|
|
14
19
|
<p class="center-block {% if page.carousel-header.animation == "fade" %}fade-in-two{% endif %}" id="jumbotron-sub-title">
|
|
15
20
|
{{page.description}}
|
|
@@ -24,9 +29,6 @@
|
|
|
24
29
|
{% endfor %}
|
|
25
30
|
</p>
|
|
26
31
|
{% endif %}
|
|
27
|
-
{% else %}
|
|
28
|
-
{% include header-content %}
|
|
29
|
-
{% endif %}
|
|
30
32
|
</div><!-- End Jumbotron Container Div -->
|
|
31
33
|
</div> <!--End Jumbotron div -->
|
|
32
34
|
</div> <!--row -->
|