jumbo-jekyll-theme 3.8.3 → 3.9.0
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 +0 -1
- data/_data/settings.yml +2 -0
- data/_includes/ascii-art.html +28 -0
- data/_includes/head.html +3 -0
- data/_layouts/default.html +0 -3
- data/_layouts/error.html +22 -18
- metadata +4 -6
- data/_includes/hero-banner.html +0 -21
- data/_includes/newsletter-script.html +0 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e365f607c5109117457b577dcc3f24e3cfb7a0717c0a27308d336ff600aaac3
|
|
4
|
+
data.tar.gz: 975fc777c6d32a40fe90b07949e40a38e277a1740d8dae5d23b0471d3c443c57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cfef6957aef28f5e596b20deec543e8fd1751787b802925a7db1ace94b6f7671859c72a0f28321d98b7f05487091eb4156c1c028499b5a60bf1ff12bf9b7877
|
|
7
|
+
data.tar.gz: 84adbf6fb333d27a040733433f63b06ecb3b4fb773e0e87dcef9ca8c28fb3e0a997848bb360ee464b357fba135079caa55b82b315dc13fd65aafa7c1bca41518
|
data/_config.yml
CHANGED
data/_data/settings.yml
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
|
|
3
|
+
%%%%%%%%%%%%%%% %%%%%% @*****************
|
|
4
|
+
%%%%%%%%%%%%%%%%% %%%%%% ********************(
|
|
5
|
+
%%%%%%%%%%%%%%%%% %%%%%% *********************
|
|
6
|
+
/****////%%%%%%%%%%%%% *********************
|
|
7
|
+
/****////%%%%%%%%%%%%% *********************
|
|
8
|
+
/****////%%%%%%%%%%%%% *********************
|
|
9
|
+
****////%%%%%%%%%%%%%%%%%%%%%%%%%########*************
|
|
10
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%########*************
|
|
11
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%########*************
|
|
12
|
+
%%%%%%%%%%%%%%%%########************/
|
|
13
|
+
%%%%%%%%%%%%%%%%%#######***********
|
|
14
|
+
%%%%%%%%%%%%%%%%%%%%%%%%
|
|
15
|
+
%%%%%%%%%%%%%%%%%%%%%%%%
|
|
16
|
+
%%%%%%%%%%%%%%%%%%%%%%%%
|
|
17
|
+
%%%%%%%%%%%%%%%%%%%%%%%%
|
|
18
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
19
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
20
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
21
|
+
%%%%%%%%%%%%%%
|
|
22
|
+
%%%%%%%%%%%%%%
|
|
23
|
+
%%%%%%%%%%%%%%
|
|
24
|
+
%%%%%%%%%%%%%
|
|
25
|
+
|
|
26
|
+
Visit our Careers page https://www.linaro.org/about/join-us/
|
|
27
|
+
|
|
28
|
+
-->
|
data/_includes/head.html
CHANGED
data/_layouts/default.html
CHANGED
|
@@ -16,9 +16,6 @@ js-package: main
|
|
|
16
16
|
{% include {{site.data.footer.include}} %}
|
|
17
17
|
{% endif %}
|
|
18
18
|
{% include github-edit.html %}
|
|
19
|
-
{% if site.data.settings.newsletter.enabled == true %}
|
|
20
|
-
{% include newsletter-script.html %}
|
|
21
|
-
{% endif %}
|
|
22
19
|
{% include_cached footer.html %}
|
|
23
20
|
</div>
|
|
24
21
|
</div>
|
data/_layouts/error.html
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
---
|
|
2
|
-
layout:
|
|
2
|
+
layout: default
|
|
3
3
|
permalink: /404.html
|
|
4
4
|
css-package: error
|
|
5
5
|
title: 404 Page Not Found
|
|
6
6
|
---
|
|
7
|
-
<div class="
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
{
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
</
|
|
7
|
+
<div class="row" id="content-container">
|
|
8
|
+
<div class="container">
|
|
9
|
+
<div class="text-center">
|
|
10
|
+
{% if site.data.settings.error-pages.image %}
|
|
11
|
+
{% include image.html path=site.data.settings.erorr-pages.image %}
|
|
12
|
+
{% elsif site.data.settings.error-pages.svg %}
|
|
13
|
+
{% include {{site.data.settings.error-pages.svg}} %}
|
|
14
|
+
{% endif %}
|
|
15
|
+
{% if site.data.settings.error-pages.not-found-title %}
|
|
16
|
+
<h1>
|
|
17
|
+
{{site.data.settings.error-pages.not-found-title}}
|
|
18
|
+
</h1>
|
|
19
|
+
{% endif %}
|
|
20
|
+
{% if site.data.settings.error-pages.not-found-desc %}
|
|
21
|
+
<p>
|
|
22
|
+
{{site.data.settings.error-pages.not-found-desc}}
|
|
23
|
+
</p>
|
|
24
|
+
{% endif %}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
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.
|
|
4
|
+
version: 3.9.0
|
|
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-
|
|
11
|
+
date: 2019-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -356,6 +356,7 @@ files:
|
|
|
356
356
|
- _data/sidebar-nav.yml
|
|
357
357
|
- _data/sticky-tab-bar.yml
|
|
358
358
|
- _data/universal-nav.yml
|
|
359
|
+
- _includes/ascii-art.html
|
|
359
360
|
- _includes/author-pagination.html
|
|
360
361
|
- _includes/authors-posts.html
|
|
361
362
|
- _includes/breadcrumb.html
|
|
@@ -370,7 +371,6 @@ files:
|
|
|
370
371
|
- _includes/gtm-noscript.html
|
|
371
372
|
- _includes/gtm-script.html
|
|
372
373
|
- _includes/head.html
|
|
373
|
-
- _includes/hero-banner.html
|
|
374
374
|
- _includes/http2.html
|
|
375
375
|
- _includes/image.html
|
|
376
376
|
- _includes/javascript.html
|
|
@@ -380,7 +380,6 @@ files:
|
|
|
380
380
|
- _includes/media.html
|
|
381
381
|
- _includes/members.html
|
|
382
382
|
- _includes/nav.html
|
|
383
|
-
- _includes/newsletter-script.html
|
|
384
383
|
- _includes/owl-carousel-homepage.html
|
|
385
384
|
- _includes/pagination-authors.html
|
|
386
385
|
- _includes/pagination-news.html
|
|
@@ -618,8 +617,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
618
617
|
- !ruby/object:Gem::Version
|
|
619
618
|
version: '0'
|
|
620
619
|
requirements: []
|
|
621
|
-
|
|
622
|
-
rubygems_version: 2.7.8
|
|
620
|
+
rubygems_version: 3.0.1
|
|
623
621
|
signing_key:
|
|
624
622
|
specification_version: 4
|
|
625
623
|
summary: This is a Bootstrap 3 Jekyll theme built for Linaros static websites.
|
data/_includes/hero-banner.html
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<div class="col-md-12">
|
|
2
|
-
<img src="{% asset_path 'Linaro-Logo_light.png' %}" id="home-hero-image"
|
|
3
|
-
class="img-responsive center-block animated fadeIn" alt="{{site.title}} Home Page Image">
|
|
4
|
-
</div>
|
|
5
|
-
|
|
6
|
-
<h1 id="home-page-title" class="white fade-in-one" id="homepage-heading">
|
|
7
|
-
Jumbo Jekyll Theme
|
|
8
|
-
</h1>
|
|
9
|
-
|
|
10
|
-
<p id="home-page-text" class="sub-tag center-block fade-in-two">
|
|
11
|
-
<span>Sub title line 1</span>
|
|
12
|
-
</p>
|
|
13
|
-
|
|
14
|
-
<p id="buttons">
|
|
15
|
-
<a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="/about/" role="button">
|
|
16
|
-
Learn More
|
|
17
|
-
</a>
|
|
18
|
-
<a class="btn btn-primary btn-lg fade-in-three bottom-border-five" href="/get-started/" role="button">
|
|
19
|
-
Get Started
|
|
20
|
-
</a>
|
|
21
|
-
</p>
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<script type="text/javascript">
|
|
2
|
-
|
|
3
|
-
function defer(method) {
|
|
4
|
-
if (window.jQuery) {
|
|
5
|
-
method();
|
|
6
|
-
} else {
|
|
7
|
-
setTimeout(function() { defer(method) }, 50);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
function showMailingPopUp() {
|
|
12
|
-
|
|
13
|
-
document.cookie = "MCPopupClosed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/";
|
|
14
|
-
document.cookie = "MCPopupSubscribed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/";
|
|
15
|
-
|
|
16
|
-
require(["mojo/signup-forms/Loader"], function(L) { L.start(
|
|
17
|
-
{"baseUrl":"mc.us3.list-manage.com","uuid":"14baaae786342d0d405ee59c2","lid":"{{site.data.settings.mailchimp.id}}"}
|
|
18
|
-
) })
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
defer(function () {
|
|
24
|
-
$("#open-newsletter-popup").on('click', function() {
|
|
25
|
-
showMailingPopUp();
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
</script>
|