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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 994454f2173259ca69196b5bfafff332d172d7eee63ee68bc820ba1ef3ea9e0a
4
- data.tar.gz: 5db70763291b1bc8e2c348c1decb3e85176a10899e8dce73d9307f5e86685dd4
3
+ metadata.gz: 9e365f607c5109117457b577dcc3f24e3cfb7a0717c0a27308d336ff600aaac3
4
+ data.tar.gz: 975fc777c6d32a40fe90b07949e40a38e277a1740d8dae5d23b0471d3c443c57
5
5
  SHA512:
6
- metadata.gz: ae135434cb3763d7d0534ac78eeadec5751c57580bbfd7b621db96064b47e27570dba84c515d1c8ec680cfcb5ee441ea4fcbb2b6dde4aec4860deee9d0ad77c8
7
- data.tar.gz: 04ad2888b94c19509b84fb2fea7795e1af30c556046d74dd37a319b042ae820459854693c75dca8241f4ca641db0399878de7352b85d628df9440a82c033f0c3
6
+ metadata.gz: 7cfef6957aef28f5e596b20deec543e8fd1751787b802925a7db1ace94b6f7671859c72a0f28321d98b7f05487091eb4156c1c028499b5a60bf1ff12bf9b7877
7
+ data.tar.gz: 84adbf6fb333d27a040733433f63b06ecb3b4fb773e0e87dcef9ca8c28fb3e0a997848bb360ee464b357fba135079caa55b82b315dc13fd65aafa7c1bca41518
data/_config.yml CHANGED
@@ -101,7 +101,6 @@ assets:
101
101
  sources:
102
102
  - assets/js/
103
103
  - assets/images/
104
- - assets/images/content/
105
104
  - assets/css/
106
105
  # Jekyll relative links plugin settings
107
106
  jekyll_relative_links:
data/_data/settings.yml CHANGED
@@ -4,6 +4,8 @@ favicon: favicon.png
4
4
  placeholder: /assets/images/placeholder.png
5
5
  # Support for http2 push features
6
6
  http2: false
7
+ # Ascii Art
8
+ ascii-art: ascii-art.html
7
9
  # Support for http2 push features
8
10
  http2_resources:
9
11
  - rel: preload
@@ -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
@@ -1,4 +1,7 @@
1
1
  <head>
2
+ {% if site.data.settings.linaro-ascii-art != "false" %}
3
+ {% include site.data.settings.ascii-art %}
4
+ {% endif %}
2
5
  <meta charset="UTF-8">
3
6
  {% if site.data.settings.http2 %}
4
7
  {% include http2.html %}
@@ -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: jumbotron-container
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="text-center">
8
- {% if site.data.settings.error-pages.image %}
9
- {% include image.html path=site.data.settings.erorr-pages.image %}
10
- {% elsif site.data.settings.error-pages.svg %}
11
- {% include {{site.data.settings.error-pages.svg}} %}
12
- {% endif %}
13
- {% if site.data.settings.error-pages.not-found-title %}
14
- <h1>
15
- {{site.data.settings.error-pages.not-found-title}}
16
- </h1>
17
- {% endif %}
18
- {% if site.data.settings.error-pages.not-found-desc %}
19
- <p>
20
- {{site.data.settings.error-pages.not-found-desc}}
21
- </p>
22
- {% endif %}
23
- </div>
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.8.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-01-28 00:00:00.000000000 Z
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
- rubyforge_project:
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.
@@ -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>