jumbo-jekyll-theme 3.9.1 → 3.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +20 -8
- data/_data/settings.yml +2 -0
- data/_includes/ascii-art.html +1 -3
- data/_includes/head.html +1 -1
- data/_layouts/post.html +2 -2
- data/assets/images/{avatar-placeholder.png → avatar-placeholder.jpg} +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e66c8489c5a41c71ac4cf9cac13c2cbbe43fbb7053ab890d4b07aba90b737f8
|
4
|
+
data.tar.gz: f165fc3d19d6af2669ac4d4c7d3bee3f995ceb0e4b785d93890b16ea8ca2617a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e66ea360dd2524af72de636db6e9dc6849f2edbefcbd5eaef5fa9107fb21e17372b3afc4c7d7ed2948a56211f1030efa36455d3509b5cb4f16849e0d9a5b0c36
|
7
|
+
data.tar.gz: 7fd025a71a5da888f1673b1c89194f33c8d513e734e0e4b9152a3dad1fa0a470be5f779a376454bebb72e6c91142b3a5f474c05218383c335d453c994a77610d
|
data/README.md
CHANGED
@@ -2,21 +2,33 @@
|
|
2
2
|
|
3
3
|
This is an open source Jekyll theme built for use on the Linaro Jekyll static websites. This project aims to unify the styles and components of Linaro static websites and make it easier to replicate and deploy a new static site.
|
4
4
|
|
5
|
+
## Contributions
|
6
|
+
We happy to consider any contributions that you may have whether bugfixes/features. Please submit a pull request with your changes and we will take a look.
|
7
|
+
|
5
8
|
## Examples of sites using the theme
|
6
9
|
|
10
|
+
* [96Boards.org](https://www.96boards.org)
|
7
11
|
* [Linaro.org](https://www.linaro.org)
|
8
|
-
* [
|
9
|
-
* [Op-tee.org](https://www.op-tee.org)
|
10
|
-
* [OpenDataPlane.org](https://www.opendataplane.org)
|
12
|
+
* [OP-TEE.org](https://www.op-tee.org)
|
11
13
|
* [DeviceTree.org](https://www.devicetree.org)
|
14
|
+
* [MLPlatform.org](https://mlplatform.org)
|
15
|
+
* [TrustedFirmware.org](https://www.trustedfirmware.org/)
|
16
|
+
* [Connect.linaro.org](https://connect.linaro.org)
|
12
17
|
|
13
18
|
## Features
|
14
19
|
|
15
|
-
|
16
|
-
|
17
|
-
* Lazy
|
18
|
-
*
|
19
|
-
*
|
20
|
+
A few of the main features that this theme offers:
|
21
|
+
|
22
|
+
* Lazy loaded content using the lazysizes.js library
|
23
|
+
* Jumbotron Header include with options for a video background, lazy loaded background carousel, background image or breadcrumb header.
|
24
|
+
* JQuery Double Scroll tables using the doubleScroll css class
|
25
|
+
* Sticky Tab bar include
|
26
|
+
* Setup the navigation bar using _data/nav.yml with option for active classes to be set
|
27
|
+
* Setup the footer using _data/footer.yml
|
28
|
+
* Custom universal navbar toggle - useful for sites that share the same parent company.
|
29
|
+
* Jekyll Assets - providiing minified Javascript/CSS packages.
|
30
|
+
* Jekyll-responsive-image plugin for generating resized images upon site build.
|
31
|
+
* Jekyll-data to override the settings added in this theme.
|
20
32
|
|
21
33
|
## Available Layouts
|
22
34
|
|
data/_data/settings.yml
CHANGED
@@ -32,6 +32,8 @@ blog:
|
|
32
32
|
tags_page: /blog/tags/
|
33
33
|
# Show Thumbnails in the post index
|
34
34
|
show_thumbnails: true
|
35
|
+
# Avatar Placeholder
|
36
|
+
avatar_placeholder: /assets/images/avatar-placeholder.jpg
|
35
37
|
# Reading time
|
36
38
|
reading_time: true
|
37
39
|
# Toggle site wide comments display.
|
data/_includes/ascii-art.html
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
<!--
|
2
|
-
|
1
|
+
<!--
|
3
2
|
%%%%%%%%%%%%%%% %%%%%% @*****************
|
4
3
|
%%%%%%%%%%%%%%%%% %%%%%% ********************(
|
5
4
|
%%%%%%%%%%%%%%%%% %%%%%% *********************
|
@@ -24,5 +23,4 @@
|
|
24
23
|
%%%%%%%%%%%%%
|
25
24
|
|
26
25
|
Visit our Careers page https://www.linaro.org/about/join-us/
|
27
|
-
|
28
26
|
-->
|
data/_includes/head.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -12,7 +12,7 @@ css-package: blog
|
|
12
12
|
{% assign author = site.authors | where: "username", page.author | first %}
|
13
13
|
{% assign author-url = author.url %}
|
14
14
|
<a href="{{author-url}}">
|
15
|
-
<div class="blog-author-image lazyload" data-bg="{% if author.image.path %}{{author.image.path}}{% else %}
|
15
|
+
<div class="blog-author-image lazyload" data-bg="{% if author.image.path %}{{author.image.path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
|
16
16
|
</a>
|
17
17
|
{% endif %}
|
18
18
|
{% if page.co-author %}
|
@@ -24,7 +24,7 @@ css-package: blog
|
|
24
24
|
<div class="blog-author-image lazyload" data-bg="{% if co-author.image.name %}
|
25
25
|
{{co-author.image.path}}
|
26
26
|
{% else %}
|
27
|
-
|
27
|
+
{{site.data.settings.blog.avatar_placeholder}}
|
28
28
|
{% endif %}"></div>
|
29
29
|
</a>
|
30
30
|
<small class="blog-author text-center">
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jumbo-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.9.
|
4
|
+
version: 3.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kirkby
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-02-
|
11
|
+
date: 2019-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -547,7 +547,7 @@ files:
|
|
547
547
|
- assets/images/Linaro-Logo_light.png
|
548
548
|
- assets/images/Linaro-Logo_standard.svg
|
549
549
|
- assets/images/Linaro-Sprinkle.png
|
550
|
-
- assets/images/avatar-placeholder.
|
550
|
+
- assets/images/avatar-placeholder.jpg
|
551
551
|
- assets/images/breadcrumb-image.jpg
|
552
552
|
- assets/images/close.png
|
553
553
|
- assets/images/content/background-image1.jpg
|