jumbo-jekyll-theme 5.6.9.2 → 5.6.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -10
  3. data/_config.yml +213 -213
  4. data/_data/example-carousel-data-source.yml +36 -36
  5. data/_data/footer.yml +33 -33
  6. data/_data/nav.yml +17 -17
  7. data/_data/settings.yml +103 -103
  8. data/_data/tags.yml +11 -11
  9. data/_data/universal-nav.yml +7 -7
  10. data/_includes/breadcrumb.html +97 -97
  11. data/_includes/core/blocks.html +30 -30
  12. data/_includes/core/button.html +5 -5
  13. data/_includes/core/buttons.html +5 -5
  14. data/_includes/core/container_row.html +7 -7
  15. data/_includes/core/feature_block.html +43 -43
  16. data/_includes/core/full_width_row.html +5 -5
  17. data/_includes/core/members-section.html +32 -32
  18. data/_includes/core/slider.html +33 -33
  19. data/_includes/core/slider_row.html +2 -2
  20. data/_includes/core/title.html +3 -3
  21. data/_includes/core/youtube_video_embed.html +11 -11
  22. data/_includes/css.html +9 -9
  23. data/_includes/custom_include.html +13 -13
  24. data/_includes/custom_include_row.html +562 -562
  25. data/_includes/display-blog-posts.html +154 -154
  26. data/_includes/flow_inner.html +19 -19
  27. data/_includes/footer.html +68 -68
  28. data/_includes/google-analytics.html +16 -16
  29. data/_includes/head.html +19 -19
  30. data/_includes/image.html +6 -6
  31. data/_includes/javascript.html +10 -10
  32. data/_includes/jumbotron.html +115 -115
  33. data/_includes/linaro-404.html +19 -19
  34. data/_includes/nav.html +153 -153
  35. data/_includes/pagination.html +38 -38
  36. data/_includes/post-sidebar.html +182 -182
  37. data/_includes/responsive-image.html +5 -5
  38. data/_includes/schema.html +43 -43
  39. data/_includes/thumb.html +1 -1
  40. data/_includes/thumbnail_image.html +9 -9
  41. data/_includes/universal-nav.html +30 -30
  42. data/_layouts/author.html +5 -5
  43. data/_layouts/default.html +3 -3
  44. data/_layouts/error.html +25 -25
  45. data/_layouts/flow.html +35 -35
  46. data/_layouts/jumbotron.html +11 -11
  47. data/_layouts/post-index.html +16 -16
  48. data/_layouts/post.html +39 -39
  49. data/_sass/app/overrides.scss +65 -65
  50. data/_sass/app/search.scss +51 -51
  51. data/_sass/bootstrap/_variables.scss +932 -932
  52. data/_sass/core.scss +20 -20
  53. data/_sass/core/blog.scss +425 -425
  54. data/_sass/core/carousel-header.scss +90 -90
  55. data/_sass/core/error.scss +190 -190
  56. data/_sass/core/flow.scss +186 -186
  57. data/_sass/core/footer.scss +141 -141
  58. data/_sass/core/jumbotron.scss +279 -279
  59. data/_sass/core/normalize.scss +357 -357
  60. data/_sass/core/theme.scss +871 -871
  61. data/_sass/home.scss +2 -2
  62. data/assets/css/main-blog.scss +13 -13
  63. data/assets/css/main-error.scss +13 -13
  64. data/assets/css/main.scss +11 -11
  65. data/assets/js/app/facebook.js +7 -7
  66. data/assets/js/app/main.js +261 -261
  67. data/assets/js/pacakge-search.js +9 -9
  68. data/assets/js/package-blog.js +12 -12
  69. data/assets/js/package-extended.js +14 -14
  70. data/assets/js/package-home.js +14 -14
  71. data/assets/js/package-main.js +13 -13
  72. data/assets/js/package-search.js +8 -8
  73. data/assets/js/vendor/fess-ss.min.js +24 -24
  74. data/robots.txt +9 -9
  75. metadata +2 -16
@@ -1,43 +1,43 @@
1
- <script type="application/ld+json">
2
- {
3
- "@context": "http://schema.org",
4
- "@graph": [
5
- {
6
- "@context" : "http://schema.org",
7
- "@type" : "Organization",
8
- "name" : "{{site.data.settings.schema.organisation.name}}",
9
- "url" : "{{site.data.settings.schema.organisation.url}}",
10
- "sameAs" : [
11
- {% for social_media_channel in site.data.settings.social_media_channels %}
12
- {{social_media_channel.url}}{% unless forloop.last %},{% endunless%}
13
- {% endfor %}
14
- ],
15
- "address": {
16
- "@type": "PostalAddress",
17
- "streetAddress": "{{site.data.settings.schema.organisation.address.street}}",
18
- "addressLocality": "{{site.data.settings.schema.organisation.address.town}}",
19
- "addressRegion": "{{site.data.settings.schema.organisation.address.county}}",
20
- "postalCode": "{{site.data.settings.schema.organisation.address.post_code}}",
21
- "addressCountry": "{{site.data.settings.schema.organisation.address.country_code}}"
22
- }
23
- }
24
- {% if include.is_post %}
25
- {% assign author = site.data.authors | where: "name", include.included_page.author | first %}
26
- ,{
27
- "@type": "BlogPosting",
28
- "headline": "{{include.included_page.title}}",
29
- "image": "{{site.url}}{{include.included_page.image.path}}",
30
- "keywords": "{{include.included_page.keywords}}",
31
- "wordcount": "{{include.included_page.content | number_of_words }}",
32
- "url": "{{include.included_page.url}}",
33
- "datePublished": "{{include.included_page.date}}",
34
- "description": "{% if include.included_page.description %}{{include.included_page.description}}{% else %}{{include.included_page.excerpt }}{% endif %}",
35
- "articleBody": "{{include.included_page.content}}",
36
- "author": {
37
- "@type": "Person",
38
- "name": "{% if author.name %}{{author.name}}{% else %}{{include.included_page.author}}{% endif %}"
39
- }
40
- }
41
- {% endif %}
42
- ]}
43
- </script>
1
+ <script type="application/ld+json">
2
+ {
3
+ "@context": "http://schema.org",
4
+ "@graph": [
5
+ {
6
+ "@context" : "http://schema.org",
7
+ "@type" : "Organization",
8
+ "name" : "{{site.data.settings.schema.organisation.name}}",
9
+ "url" : "{{site.data.settings.schema.organisation.url}}",
10
+ "sameAs" : [
11
+ {% for social_media_channel in site.data.settings.social_media_channels %}
12
+ {{social_media_channel.url}}{% unless forloop.last %},{% endunless%}
13
+ {% endfor %}
14
+ ],
15
+ "address": {
16
+ "@type": "PostalAddress",
17
+ "streetAddress": "{{site.data.settings.schema.organisation.address.street}}",
18
+ "addressLocality": "{{site.data.settings.schema.organisation.address.town}}",
19
+ "addressRegion": "{{site.data.settings.schema.organisation.address.county}}",
20
+ "postalCode": "{{site.data.settings.schema.organisation.address.post_code}}",
21
+ "addressCountry": "{{site.data.settings.schema.organisation.address.country_code}}"
22
+ }
23
+ }
24
+ {% if include.is_post %}
25
+ {% assign author = site.data.authors | where: "name", include.included_page.author | first %}
26
+ ,{
27
+ "@type": "BlogPosting",
28
+ "headline": "{{include.included_page.title}}",
29
+ "image": "{{site.url}}{{include.included_page.image.path}}",
30
+ "keywords": "{{include.included_page.keywords}}",
31
+ "wordcount": "{{include.included_page.content | number_of_words }}",
32
+ "url": "{{include.included_page.url}}",
33
+ "datePublished": "{{include.included_page.date}}",
34
+ "description": "{% if include.included_page.description %}{{include.included_page.description}}{% else %}{{include.included_page.excerpt }}{% endif %}",
35
+ "articleBody": "{{include.included_page.content}}",
36
+ "author": {
37
+ "@type": "Person",
38
+ "name": "{% if author.name %}{{author.name}}{% else %}{{include.included_page.author}}{% endif %}"
39
+ }
40
+ }
41
+ {% endif %}
42
+ ]}
43
+ </script>
@@ -1,2 +1,2 @@
1
- <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="/{{resized[0].path}}"
1
+ <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="/{{resized[0].path}}"
2
2
  class="img-responsive lazyload">
@@ -1,10 +1,10 @@
1
- {% comment %}
2
- This is a template for the jekyll-responsive-image plugin.
3
- This will generate a picture element
4
- {% endcomment %}
5
- <picture>
6
- {% for i in resized %}
7
- <source media="(max-width: {{ i.width }}px)" data-srcset="/{{ i.path }}">
8
- {% endfor %}
9
- <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="/{{ path }}" class="img-responsive lazyload">
1
+ {% comment %}
2
+ This is a template for the jekyll-responsive-image plugin.
3
+ This will generate a picture element
4
+ {% endcomment %}
5
+ <picture>
6
+ {% for i in resized %}
7
+ <source media="(max-width: {{ i.width }}px)" data-srcset="/{{ i.path }}">
8
+ {% endfor %}
9
+ <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="/{{ path }}" class="img-responsive lazyload">
10
10
  </picture>
@@ -1,30 +1,30 @@
1
- <!-- Universal NavBar-->
2
- <nav class="navbar navbar-default navbar-static" id="universal-nav">
3
- <div class="navbar-header">
4
- <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
5
- <span class="sr-only">Toggle navigation</span>
6
- <span class="glyphicon glyphicon-chevron-down"></span>
7
- <span class="glyphicon glyphicon-chevron-up"></span>
8
- </button>
9
- </div>
10
- <div id="navbar" class="navbar-collapse collapse" role="navigation" aria-expanded="false" style="height: 1px;">
11
- <ul class="nav navbar-nav navbar-right">
12
- {% for item in site.data.universal-nav.items %}
13
- {% if item.options %}
14
- <li class="dropdown {% for project-site in item.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
15
- <a href="#" class="projects dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
16
- aria-expanded="false">{{item.title}} <span class="caret"></span></a>
17
- <ul class="dropdown-menu">
18
- {% for project-site in item.options %}
19
- <li {% if project-site.active %}class="active" {% endif%}><a target="_self" href="{{project-site.url}}">{{project-site.title}}</a></li>
20
- {% endfor %}
21
- </ul>
22
- </li>
23
- {% else %}
24
- <li {% if item.active %}class="active" {% endif %}><a class="linaro" target="_self" href="{{item.url}}">{{item.title}}</a></li>
25
- {% endif %}
26
- {% endfor %}
27
- </ul>
28
- </div>
29
- </nav>
30
- <!-- End Universal NavBar -->
1
+ <!-- Universal NavBar-->
2
+ <nav class="navbar navbar-default navbar-static" id="universal-nav">
3
+ <div class="navbar-header">
4
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
5
+ <span class="sr-only">Toggle navigation</span>
6
+ <span class="glyphicon glyphicon-chevron-down"></span>
7
+ <span class="glyphicon glyphicon-chevron-up"></span>
8
+ </button>
9
+ </div>
10
+ <div id="navbar" class="navbar-collapse collapse" role="navigation" aria-expanded="false" style="height: 1px;">
11
+ <ul class="nav navbar-nav navbar-right">
12
+ {% for item in site.data.universal-nav.items %}
13
+ {% if item.options %}
14
+ <li class="dropdown {% for project-site in item.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
15
+ <a href="#" class="projects dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
16
+ aria-expanded="false">{{item.title}} <span class="caret"></span></a>
17
+ <ul class="dropdown-menu">
18
+ {% for project-site in item.options %}
19
+ <li {% if project-site.active %}class="active" {% endif%}><a target="_self" href="{{project-site.url}}">{{project-site.title}}</a></li>
20
+ {% endfor %}
21
+ </ul>
22
+ </li>
23
+ {% else %}
24
+ <li {% if item.active %}class="active" {% endif %}><a class="linaro" target="_self" href="{{item.url}}">{{item.title}}</a></li>
25
+ {% endif %}
26
+ {% endfor %}
27
+ </ul>
28
+ </div>
29
+ </nav>
30
+ <!-- End Universal NavBar -->
@@ -1,6 +1,6 @@
1
- ---
2
- layout: jumbotron-container
3
- css-package: blog
4
- js-package: blog
5
- ---
1
+ ---
2
+ layout: jumbotron-container
3
+ css-package: blog
4
+ js-package: blog
5
+ ---
6
6
  {% include authors-posts.html %}
@@ -1,4 +1,4 @@
1
- ---
2
- layout: flow
3
- ---
1
+ ---
2
+ layout: flow
3
+ ---
4
4
  {{content}}
@@ -1,25 +1,25 @@
1
- ---
2
- layout: base
3
- css-package: error
4
- ---
5
- <div class="row" id="content-container">
6
- <div class="container">
7
- <div class="text-center">
8
- {% if page.image.path %}
9
- {% include image.html path=page.image.path %}
10
- {% elsif page.image.svg %}
11
- {% include {{page.image.svg}} %}
12
- {% endif %}
13
- {% if page.title %}
14
- <h1>
15
- {{page.title}}
16
- </h1>
17
- {% endif %}
18
- {% if page.description %}
19
- <p>
20
- {{page.description}}
21
- </p>
22
- {% endif %}
23
- </div>
24
- </div>
25
- </div>
1
+ ---
2
+ layout: base
3
+ css-package: error
4
+ ---
5
+ <div class="row" id="content-container">
6
+ <div class="container">
7
+ <div class="text-center">
8
+ {% if page.image.path %}
9
+ {% include image.html path=page.image.path %}
10
+ {% elsif page.image.svg %}
11
+ {% include {{page.image.svg}} %}
12
+ {% endif %}
13
+ {% if page.title %}
14
+ <h1>
15
+ {{page.title}}
16
+ </h1>
17
+ {% endif %}
18
+ {% if page.description %}
19
+ <p>
20
+ {{page.description}}
21
+ </p>
22
+ {% endif %}
23
+ </div>
24
+ </div>
25
+ </div>
@@ -1,36 +1,36 @@
1
- ---
2
- layout: base
3
- ---
4
- {% if page.jumbotron.carousel-images %}
5
- {% include carousel-header.html images=page.jumbotron.carousel-images %}
6
- {% include jumbotron.html %}
7
- {% elsif page.jumbotron %}
8
- {% include jumbotron.html %}
9
- {% else %}
10
- {% include breadcrumb.html %}
11
- {% endif %}
12
- {% if page.flow %}
13
- <div id="flow_wrapper">
14
- {% for each in page.flow %}
15
- {% if each.row == "main_content_row" %}
16
- <div class="row" id="main_content">
17
- <div class="container">
18
- {{content}}
19
- </div>
20
- </div>
21
- {% elsif each.row == "container_row" %}
22
- {% include core/container_row.html object=each %}
23
- {% elsif each.row == "full_width_row" %}
24
- {% include core/full_width_row.html object=each %}
25
- {% elsif each.row == "custom_include_row" %}
26
- {% include {{each.source}} %}
27
- {% endif %}
28
- {% endfor %}
29
- </div>
30
- {% else %}
31
- <div class="row" id="content-container">
32
- <div class="container">
33
- {{content}}
34
- </div>
35
- </div>
1
+ ---
2
+ layout: base
3
+ ---
4
+ {% if page.jumbotron.carousel-images %}
5
+ {% include carousel-header.html images=page.jumbotron.carousel-images %}
6
+ {% include jumbotron.html %}
7
+ {% elsif page.jumbotron %}
8
+ {% include jumbotron.html %}
9
+ {% else %}
10
+ {% include breadcrumb.html %}
11
+ {% endif %}
12
+ {% if page.flow %}
13
+ <div id="flow_wrapper">
14
+ {% for each in page.flow %}
15
+ {% if each.row == "main_content_row" %}
16
+ <div class="row" id="main_content">
17
+ <div class="container">
18
+ {{content}}
19
+ </div>
20
+ </div>
21
+ {% elsif each.row == "container_row" %}
22
+ {% include core/container_row.html object=each %}
23
+ {% elsif each.row == "full_width_row" %}
24
+ {% include core/full_width_row.html object=each %}
25
+ {% elsif each.row == "custom_include_row" %}
26
+ {% include {{each.source}} %}
27
+ {% endif %}
28
+ {% endfor %}
29
+ </div>
30
+ {% else %}
31
+ <div class="row" id="content-container">
32
+ <div class="container">
33
+ {{content}}
34
+ </div>
35
+ </div>
36
36
  {% endif %}
@@ -1,12 +1,12 @@
1
- ---
2
- layout: base
3
- ---
4
- {% if page.jumbotron.carousel-images %}
5
- {% include carousel-header.html images=page.jumbotron.carousel-images %}
6
- {% include jumbotron.html %}
7
- {% elsif page.jumbotron %}
8
- {% include jumbotron.html %}
9
- {% else %}
10
- {% include breadcrumb.html %}
11
- {% endif %}
1
+ ---
2
+ layout: base
3
+ ---
4
+ {% if page.jumbotron.carousel-images %}
5
+ {% include carousel-header.html images=page.jumbotron.carousel-images %}
6
+ {% include jumbotron.html %}
7
+ {% elsif page.jumbotron %}
8
+ {% include jumbotron.html %}
9
+ {% else %}
10
+ {% include breadcrumb.html %}
11
+ {% endif %}
12
12
  {{content}}
@@ -1,16 +1,16 @@
1
- ---
2
- layout: base
3
- title: Blog
4
- css-package: blog
5
- js-package: blog
6
- ---
7
- <div class="row" id="content-container">
8
- <div class="container">
9
- {% include display-blog-posts.html %}
10
- {% if page.news %}
11
- {% include pagination.html path="/news/:num/"%}
12
- {% else %}
13
- {% include pagination.html path="/blog/:num/"%}
14
- {% endif %}
15
- </div>
16
- </div>
1
+ ---
2
+ layout: base
3
+ title: Blog
4
+ css-package: blog
5
+ js-package: blog
6
+ ---
7
+ <div class="row" id="content-container">
8
+ <div class="container">
9
+ {% include display-blog-posts.html %}
10
+ {% if page.news %}
11
+ {% include pagination.html path="/news/:num/"%}
12
+ {% else %}
13
+ {% include pagination.html path="/blog/:num/"%}
14
+ {% endif %}
15
+ </div>
16
+ </div>
@@ -1,39 +1,39 @@
1
- ---
2
- layout: base
3
- js-package: blog
4
- css-package: blog
5
- ---
6
- <div class="row overlay background-image {% if page.image.background-class %}{{page.image.background-class}}{% endif %}" id="jumbotron" style="background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{% if page.image.path %}{{page.image.path}}{% else %}{{page.image}}{% endif %}');"> <!--Row -->
7
- <div id="jumbotron-content" class="flex-container">
8
- <div class="container flex-center" id="jumbotron-text">
9
- <h1 id="jumbotron-heading">{{page.title}}</h1>
10
- {% assign author = site.authors | where: "username", page.author | first %}
11
- {% assign author-url = author.url %}
12
- <a href="{{author-url}}">
13
- <div class="blog-author-image lazyload" data-bg="{% if author.image_path %}{{author.image_path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
14
- </a>
15
- <small class="blog-author text-center">
16
- By
17
- <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
18
- </small>
19
- <small class="blog-date text-center">
20
- <em>{{page.date | date: "%A, %B %-d, %Y"}}</em>
21
- </small>
22
- {% include read_time.html %}
23
- </div>
24
- </div>
25
- </div>
26
- <div class="row" id="content-container">
27
- <div class="container">
28
- <div class="col-xs-12 col-sm-8 col-sm-offset-2 blog-content">
29
- <article class="post-content">
30
- {{ content }}
31
- {% include post-series.html %}
32
- </article>
33
- {% include disqus-comments.html %}
34
- </div>
35
- <div class="col-xs-12 col-sm-8 col-sm-offset-2 no-padding blog-sidebar ">
36
- {% include_cached post-sidebar.html %}
37
- </div>
38
- </div>
39
- </div>
1
+ ---
2
+ layout: base
3
+ js-package: blog
4
+ css-package: blog
5
+ ---
6
+ <div class="row overlay background-image {% if page.image.background-class %}{{page.image.background-class}}{% endif %}" id="jumbotron" style="background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('{% if page.image.path %}{{page.image.path}}{% else %}{{page.image}}{% endif %}');"> <!--Row -->
7
+ <div id="jumbotron-content" class="flex-container">
8
+ <div class="container flex-center" id="jumbotron-text">
9
+ <h1 id="jumbotron-heading">{{page.title}}</h1>
10
+ {% assign author = site.authors | where: "username", page.author | first %}
11
+ {% assign author-url = author.url %}
12
+ <a href="{{author-url}}">
13
+ <div class="blog-author-image lazyload" data-bg="{% if author.image_path %}{{author.image_path}}{% else %}{{site.data.settings.blog.avatar_placeholder}}{% endif %}"></div>
14
+ </a>
15
+ <small class="blog-author text-center">
16
+ By
17
+ <em>{% if author.name %}{{author.name}}{% else %}{{page.author}}{% endif %}</em>
18
+ </small>
19
+ <small class="blog-date text-center">
20
+ <em>{{page.date | date: "%A, %B %-d, %Y"}}</em>
21
+ </small>
22
+ {% include read_time.html %}
23
+ </div>
24
+ </div>
25
+ </div>
26
+ <div class="row" id="content-container">
27
+ <div class="container">
28
+ <div class="col-xs-12 col-sm-8 col-sm-offset-2 blog-content">
29
+ <article class="post-content">
30
+ {{ content }}
31
+ {% include post-series.html %}
32
+ </article>
33
+ {% include disqus-comments.html %}
34
+ </div>
35
+ <div class="col-xs-12 col-sm-8 col-sm-offset-2 no-padding blog-sidebar ">
36
+ {% include_cached post-sidebar.html %}
37
+ </div>
38
+ </div>
39
+ </div>