jumbo-jekyll-theme 6.0.0.3 → 6.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df56de1e8b0c939d4da79c7a435e3fb5bb71f2b2205b260f4dd6f025ca7864cb
4
- data.tar.gz: 61f3727930c25426f1a0db4248d8a7b0710114757fea25fbdc2bd112a9699f39
3
+ metadata.gz: d5698a6005b9b935dfeb5a572e9f5856482c68f7c641533871322ffe3bc2ea6e
4
+ data.tar.gz: 8661d8f404274a015a9ef10389d34ac530264586fc99114b7f030ae3e4733a50
5
5
  SHA512:
6
- metadata.gz: a8a0d98a3815ab3c12c209a1492a123a23664946b856a8793d81ca18bae98dd2b426364ef4823192191f1ec445086a2685cef26b8cf681999b1446fb4af9c749
7
- data.tar.gz: 69582e78dad72e3fb52307514ddde348997007856acd13fdaff5c997a21b32914ecdd7a61df6b810e12f637e53fab81213777ae17c03baae7ede85e3a6314aa4
6
+ metadata.gz: f4297195100873bde5697d7c18a7c71ec64bebbc8229feba99dff644b413759a6c522ff2199b0619f5754eedff6571c403d4e7985b0acd311c9c0f2f46256878
7
+ data.tar.gz: 6b9cfd0439c76429a7c94a1c4df73e4cb9cff9779176c12cdf645a4f7a2d6a2c9395eaf2c2de0b1f0758c211f0b56f4f612708e2fdb38f9456237cf56032ad6a
@@ -77,6 +77,24 @@ http2_resources:
77
77
  google_analytics:
78
78
  enabled: true
79
79
  code: GTM-XXXX
80
+ cookies:
81
+ necessary:
82
+ - name: cookieControl
83
+ description: >
84
+ This is used to control the display of the preferences pop up. Without this, we wouldn't know if you've clicked Accept!
85
+ - name: cookieControlPrefs
86
+ description: >
87
+ This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!
88
+ marketing:
89
+ - name: _ga
90
+ description: >
91
+ 2 years - Used to distinguish users.
92
+ - name: _gid
93
+ description: >
94
+ 24 hours - Used to distinguish users.
95
+ - name: _gat
96
+ description: >
97
+ 1 minute - Used to throttle request rate.
80
98
  # Set the site-wide default social media share image.
81
99
  social_media_share_image: /assets/images/social-media-image.png
82
100
  # Set the default favicon
@@ -156,7 +174,6 @@ readme_index:
156
174
  # -------- jekyll_picture_tag --------
157
175
  picture:
158
176
  nomarkdown: false
159
- source: "assets/images"
160
177
  output: "assets/images"
161
178
  relative_url: true
162
179
  # -------- japr --------
@@ -6,10 +6,10 @@
6
6
  {% assign post_in_seconds = post.date | date: "%s" | plus: 0 %}
7
7
  {% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
8
8
  {% if post.image %}
9
- {% assign image_path = post.image | remove_first: "/assets/images/" %}
9
+ {% assign image_path = post.image %}
10
10
  {% capture image_alt %}{{post.title}} image {% endcapture %}
11
11
  {% else %}
12
- {% assign image_path = site.post_placeholder | remove_first: "/assets/images/" %}
12
+ {% assign image_path = site.post_placeholder %}
13
13
  {% capture image_alt %}Blog post placeholder image {% endcapture %}
14
14
  {% endif %}
15
15
  <li class="media flex-column flex-sm-row">
@@ -15,10 +15,10 @@
15
15
  <div class="col col-12 col-lg-7 order-lg-2 px-0 px-sm-0 latest-featured-post">
16
16
  <a href="{{post.url}}">
17
17
  {% if post.image %}
18
- {% assign block_image = post.image | remove_first: "/assets/images/" %}
18
+ {% assign block_image = post.image %}
19
19
  {% capture block_image_alt %}{{post.title}} image {% endcapture %}
20
20
  {% else %}
21
- {% assign block_image = site.post_placeholder | remove_first: "/assets/images/" %}
21
+ {% assign block_image = site.post_placeholder %}
22
22
  {% capture block_image_alt %}Blog post placeholder image {% endcapture %}
23
23
  {% endif %}
24
24
  {% picture featured_blog_image {{block_image}} --alt {{block_image_alt}} %}
@@ -30,9 +30,9 @@
30
30
  {% assign author = site.authors | where: "username", post.author | first %}
31
31
  {% assign author-url = author.url %}
32
32
  {% if author.image %}
33
- {% assign author_image = author.image | remove_first: "/assets/images/" %}
33
+ {% assign author_image = author.image %}
34
34
  {% else %}
35
- {% assign author_image = site.avatar_placeholder | remove_first: "/assets/images/" %}
35
+ {% assign author_image = site.avatar_placeholder %}
36
36
  {% endif %}
37
37
  {% capture image_alt %}{{author.name}} profile image{% endcapture %}
38
38
  <div class="media align-items-center mb-3">
@@ -64,10 +64,10 @@
64
64
  <div class="card h-100 ">
65
65
  <div class="blog_image_header">
66
66
  {% if post.image %}
67
- {% assign block_image = post.image | remove_first: "/assets/images/" %}
67
+ {% assign block_image = post.image %}
68
68
  {% capture block_image_alt %}{{post.title}} image {% endcapture %}
69
69
  {% else %}
70
- {% assign block_image = site.post_placeholder | remove_first: "/assets/images/" %}
70
+ {% assign block_image = site.post_placeholder %}
71
71
  {% capture block_image_alt %}Blog post placeholder image {% endcapture %}
72
72
  {% endif %}
73
73
  {% picture featured_blog_image {{block_image}} --alt {{block_image_alt}} %}
@@ -77,9 +77,9 @@
77
77
  {% assign author = site.authors | where: "username", post.author | first %}
78
78
  {% assign author-url = author.url %}
79
79
  {% if author.image %}
80
- {% assign author_image = author.image | remove_first: "/assets/images/" %}
80
+ {% assign author_image = author.image %}
81
81
  {% else %}
82
- {% assign author_image = site.avatar_placeholder | remove_first: "/assets/images/" %}
82
+ {% assign author_image = site.avatar_placeholder %}
83
83
  {% endif %}
84
84
  {% capture image_alt %}{{author.name}} profile image{% endcapture %}
85
85
  <div class="media align-items-center mb-3">
@@ -10,10 +10,10 @@
10
10
  {% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
11
11
 
12
12
  {% if post.image %}
13
- {% assign image_path = post.image | remove_first: "/assets/images/" %}
13
+ {% assign image_path = post.image %}
14
14
  {% capture image_alt %}{{post.title}} image {% endcapture %}
15
15
  {% else %}
16
- {% assign image_path = site.post_placeholder | remove_first: "/assets/images/" %}
16
+ {% assign image_path = site.post_placeholder %}
17
17
  {% capture image_alt %}Blog post placeholder image {% endcapture %}
18
18
  {% endif %}
19
19
  <li class="media flex-column flex-sm-row">
@@ -47,10 +47,10 @@ Other Posts
47
47
  {% assign posts = site.posts | sample:5 %}
48
48
  {% for post in posts %}
49
49
  {% if post.image %}
50
- {% assign image_path = post.image | remove_first: "/assets/images/" %}
50
+ {% assign image_path = post.image %}
51
51
  {% capture image_alt %}{{post.title}} image {% endcapture %}
52
52
  {% else %}
53
- {% assign image_path = site.post_placeholder | remove_first: "/assets/images/" %}
53
+ {% assign image_path = site.post_placeholder %}
54
54
  {% capture image_alt %}Blog post placeholder image {% endcapture %}
55
55
  {% endif %}
56
56
  <li class="media flex-column flex-sm-row">
@@ -15,14 +15,12 @@
15
15
  <th>Usage</th>
16
16
  </thead>
17
17
  <tbody>
18
+ {% for cookie in site.google_analytics.cookies.necessary %}
18
19
  <tr>
19
- <td>cookieControl</td>
20
- <td>This is used to control the display of the preferences pop up. Without this, we wouldn't know if you've clicked Accept!</td>
21
- </tr>
22
- <tr>
23
- <td>cookieControlPrefs</td>
24
- <td>This is used to store your cookie preferences. Without this we wouldn't know which cookies you want!</td>
20
+ <td>{{cookie.name}}</td>
21
+ <td>{{cookie.description | markdownify}}</td>
25
22
  </tr>
23
+ {% endfor %}
26
24
  </tbody>
27
25
  </table>
28
26
  </div>
@@ -52,18 +50,12 @@
52
50
  <th>Usage</th>
53
51
  </thead>
54
52
  <tbody>
53
+ {% for cookie in site.google_analytics.cookies.marketing %}
55
54
  <tr>
56
- <td>_ga</td>
57
- <td>2 years Used to distinguish users.</td>
58
- </tr>
59
- <tr>
60
- <td>_gid</td>
61
- <td>24 hours Used to distinguish users.</td>
62
- </tr>
63
- <tr>
64
- <td>_gat</td>
65
- <td>1 minute Used to throttle request rate.</td>
55
+ <td>{{cookie.name}}</td>
56
+ <td>{{cookie.description | markdownify}}</td>
66
57
  </tr>
58
+ {% endfor %}
67
59
  </tbody>
68
60
  </table>
69
61
  </div>
@@ -10,9 +10,9 @@
10
10
  {% endcapture %}
11
11
  {% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
12
12
  <div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
13
- <a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i class="icon-github-circled center-block"></i></a>
14
- <a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</a>
15
- <a href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</a>
13
+ <a type="button" aria-label="GitHub Home" title="GitHub Home" class="btn btn-secondary" href="{{github-home}}" id="github_home"><span class="sr-only">Go to GitHub Repo home</span><i class="icon-github-circled center-block"></i></a>
14
+ <a type="button" aria-label="Report an issue on GitHub for this page" title="Report an issue on GitHub for this page" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an Issue</a>
15
+ <a aria-label="Edit this page on GitHub" title="Edit this page on GitHub" href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary" id="edit_on_github">Edit on GitHub</a>
16
16
  </div>
17
17
  {% else %}
18
18
  {% capture github-home %}{{site.edit-on-github.repo}}{% endcapture %}
@@ -22,11 +22,11 @@
22
22
  {% endcapture %}
23
23
  {% capture edit-me-link %}{{github-docs}}{{page-path}}{% endcapture %}
24
24
  <div class="btn-group my-2 mt-1" role="group" aria-label="Basic example" id="github_controls">
25
- <a type="button" class="btn btn-secondary" href="{{github-home}}" id="github_home"><i
25
+ <a type="button" aria-label="GitHub Home" title="GitHub Home" class="btn btn-secondary" href="{{github-home}}" id="github_home"> <span class="sr-only">Go to GitHub Repo home</span> <i
26
26
  class="icon-github-circled center-block"></i></a>
27
- <a type="button" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
27
+ <a type="button" aria-label="Report an issue on GitHub for this page" title="Report an issue on GitHub for this page" class="btn btn-secondary" href="{{report-issue-link}}" id="submit_issue">Report an
28
28
  Issue</a>
29
- <a href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary"
29
+ <a aria-label="Edit this page on GitHub" title="Edit this page on GitHub" href="{{edit-me-link | replace: " ", "" }}" type="button" class="btn btn-secondary"
30
30
  id="edit_on_github">Edit on GitHub</a>
31
31
  </div>
32
32
  {% endif %}
@@ -4,7 +4,7 @@
4
4
  {% for slide in page.jumbotron.slider %}
5
5
  <div class="item d-flex align-items-center owl-slide {% if forloop.first %}active{% endif %}">
6
6
  {% if slide.image %}
7
- {% assign image_path = slide.image | remove_first: "/assets/images/" %}
7
+ {% assign image_path = slide.image %}
8
8
  {% picture header_slider_image {{image_path}} %}
9
9
  {% endif %}
10
10
  <div class="container {% if page.jumbotron.inner_class %}{{page.jumbotron.inner_class}}{% endif %}">
@@ -42,7 +42,7 @@
42
42
  <div class="jumbotron d-flex align-items-center jumbotron-fluid {% if page.jumbotron.video %}video{% endif %}
43
43
  {% if page.jumbotron.image %}background_image{% endif%} {% if page.jumbotron.class %}{{page.jumbotron.class}}{% endif %}">
44
44
  {% if page.jumbotron.image %}
45
- {% assign image_path = page.jumbotron.image | remove_first: "/assets/images/" %}
45
+ {% assign image_path = page.jumbotron.image %}
46
46
  {% picture header_image {{image_path}} %}
47
47
  {% endif %}
48
48
  {% if page.jumbotron.video %}
@@ -31,7 +31,7 @@
31
31
  <div class="col col-12 col-sm-6 col-lg-{{block_width}} block_column">
32
32
  <div class="card h-100 {% if block.background_image %}background_image text-white{% endif %} {% if block.style %}{{block.style}}{% endif %}">
33
33
  {% if block.image %}
34
- {% assign block_image = block.image | remove_first: "/assets/images/" %}
34
+ {% assign block_image = block.image %}
35
35
  {% capture block_image_alt %}{{block.title}} image {% endcapture %}
36
36
  {% picture card_block_image {{block_image}} --alt {{block_image_alt}} %}
37
37
  {% endif %}
@@ -0,0 +1,21 @@
1
+ <div class="col col-12 blocks {% if include.object.style %}{{include.object.style}}{% endif %}">
2
+ <div id="collapseSection" role="tablist" aria-multiselectable="true">
3
+ {% for panel in include.object.panels %}
4
+ <div class="card mb-3 border-0">
5
+ <div class="card-header border" role="tab" id="section{{forloop.index}}Header">
6
+ <h2 class="mb-0">
7
+ <button class="btn btn-link btn-block text-left text-dark {% unless forloop.first %}collapsed{% endunless %}" type="button" data-toggle="collapse" data-target="#section{{forloop.index}}Content"
8
+ aria-expanded="true" aria-controls="section{{forloop.index}}Content">
9
+ {{panel.title}}
10
+ </button>
11
+ </h2>
12
+ </div>
13
+ <div id="section{{forloop.index}}Content" class="mt-3 collapse {% if forloop.first %}show{% endif %}" role="tabpanel" aria-labelledby="section{{forloop.index}}Header">
14
+ <div class="card-body border">
15
+ {{panel.content | markdownify}}
16
+ </div>
17
+ </div>
18
+ </div>
19
+ {% endfor %}
20
+ </div>
21
+ </div>
@@ -1,7 +1,7 @@
1
1
  <div class="row {% if include.object.style %}{{include.object.style}}{% endif %}
2
2
  {% if include.object.background_image %}background_image_row text-white{% endif %}">
3
3
  {% if include.object.background_image %}
4
- {% assign row_background_image = include.object.background_image | remove_first: "/assets/images/" %}
4
+ {% assign row_background_image = include.object.background_image %}
5
5
  {% capture row_background_image_alt %}background image{% endcapture %}
6
6
  {% picture header_image {{row_background_image}} --alt {{block_image_alt}} %}
7
7
  {% endif %}
@@ -2,7 +2,7 @@
2
2
  <div class="row {% if include.object.style %}{{include.object.style}}{% endif %}">
3
3
  <div class="col col-12 col-md-7 block__image {% if include.object.feature_block_content.position == "right" %}order-sm-2{% endif %}">
4
4
  {% if include.object.feature_block_content.type == "image" %}
5
- {% assign image_path = include.object.feature_block_content.image_content_path | remove_first: '/assets/images/' %}
5
+ {% assign image_path = include.object.feature_block_content.image_content_path %}
6
6
  {% capture image_alt %}
7
7
  {% if include.object.feature_block_content.title %}
8
8
  {{include.object.feature_block_content.title}} featured image
@@ -9,6 +9,8 @@
9
9
  </div>
10
10
  {% elsif section.format == "tabs" %}
11
11
  {% include flow/tabbed_content.html object=section %}
12
+ {% elsif section.format == "collapse" %}
13
+ {% include flow/collapse.html object=section %}
12
14
  {% elsif section.format == "block" %}
13
15
  {% include flow/blocks.html object=section %}
14
16
  {% elsif section.format == "buttons" %}
@@ -13,7 +13,7 @@
13
13
  data-src="{{member.image.path}}"/>
14
14
  </div>
15
15
  {% else %}
16
- {% assign image_path = member.image.path | remove_first: '/' %}
16
+ {% assign image_path = member.image.path %}
17
17
  {% assign full_path = member.image.path %}
18
18
  <div class="col-xs-6 col-sm-{{include.object.members_content.item_width}}">
19
19
  <!--TODO picture-->
@@ -15,7 +15,7 @@
15
15
  {% if include.object.lightbox_enabled %}<a data-featherlight="{{item.image}}">{% endif %}
16
16
  <div class="item">
17
17
  {% if item.image %}
18
- {% capture image_path %}{{item.image | remove_first: "/assets/images/" }}{% endcapture %}
18
+ {% capture image_path %}{{item.image}}{% endcapture %}
19
19
  {% capture image_alt %}Slider block image {{forloop.index}}{% endcapture %}
20
20
  {% picture slider_block_image {{image_path}} --alt {{image_alt}} %}
21
21
  {% endif %}
@@ -11,7 +11,7 @@
11
11
  {% if include.url %}
12
12
  <a href="{{include.url}}" target="_blank">
13
13
  {% endif %}
14
- {% picture blog_image {{include.path | remove_first: "/assets/images/" }} class="{{image_class}}" --alt {{image_alt}} --class {{image_class}} %}
14
+ {% picture blog_image {{include.path}} class="{{image_class}}" --alt {{image_alt}} --class {{image_class}} %}
15
15
  {% if include.url %}
16
16
  </a>
17
17
  {% endif %}
@@ -1,3 +1,3 @@
1
1
  <a class="navbar-brand" href="/">
2
- <img src="/assets/images/Linaro-Logo.svg" width="30" height="30" class="d-inline-block align-top" alt="">
2
+ <img src="/assets/images/Linaro-Logo.svg" alt="Linaro Logo" width="30" height="30" class="d-inline-block align-top">
3
3
  </a>
@@ -113,7 +113,7 @@
113
113
  {% endfor %}
114
114
  {% if site.data.nav.search.enabled %}
115
115
  <li class="nav-item dropdown search">
116
- <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
116
+ <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" aria-label="Search dropdown" data-toggle="dropdown"
117
117
  aria-haspopup="true" aria-expanded="false">
118
118
  <i class="icon-search"></i>
119
119
  </a>
@@ -14,11 +14,11 @@
14
14
  {% for item in site.data.universal_nav.items %}
15
15
  {% if item.options %}
16
16
  <li class="nav-item dropdown {% for project-site in item.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
17
- <a class="nav-link dropdown-toggle" target="_self" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
17
+ <a class="nav-link dropdown-toggle" target="_self" href="#" id="universalNavbarDropdown" aria-label="Toggle unviersal navigation" role="button" data-toggle="dropdown"
18
18
  aria-haspopup="true" aria-expanded="false">
19
19
  {{item.title}}
20
20
  </a>
21
- <div class="dropdown-menu" aria-labelledby="navbarDropdown">
21
+ <div class="dropdown-menu" aria-labelledby="universalNavbarDropdown">
22
22
  {% for project-site in item.options %}
23
23
  <a class="dropdown-item {% if project-site.active %}active{% endif%}" href="{{project-site.url}}">{{project-site.title}}</a>
24
24
  {% endfor %}
@@ -1,24 +1,24 @@
1
1
  {% if site.social_media_channels.twitter %}
2
- <a href="{{site.social_media_channels.twitter.url}}" class="btn btn-social-icon"><i
2
+ <a href="{{site.social_media_channels.twitter.url}}" class="btn btn-social-icon"><span class="sr-only">Go to Twitter profile</span><i
3
3
  class="icon-twitter"></i></a>
4
4
  {% endif %}
5
5
  {% if site.social_media_channels.facebook %}
6
- <a href="{{site.social_media_channels.facebook.url}}" class="btn btn-social-icon"><i
6
+ <a href="{{site.social_media_channels.facebook.url}}" class="btn btn-social-icon"><span class="sr-only">Go to Facebook Page</span><i
7
7
  class="icon-facebook"></i></a>
8
8
  {% endif %}
9
9
  {% if site.social_media_channels.linkedin %}
10
- <a href="{{site.social_media_channels.linkedin.url}}" class="btn btn-social-icon"><i
10
+ <a href="{{site.social_media_channels.linkedin.url}}" class="btn btn-social-icon"><span class="sr-only">Go to LinkedIn profile</span><i
11
11
  class="icon-linkedin"></i></a>
12
12
  {% endif %}
13
13
  {% if site.social_media_channels.instagram %}
14
- <a href="{{site.social_media_channels.instagram.url}}" class="btn btn-social-icon"><i
14
+ <a href="{{site.social_media_channels.instagram.url}}" class="btn btn-social-icon"><span class="sr-only">Go to instagram social media page</span><i
15
15
  class="icon-instagram"></i></a>
16
16
  {% endif %}
17
17
  {% if site.social_media_channels.youtube %}
18
- <a href="{{site.social_media_channels.youtube.url}}" class="btn btn-social-icon"><i
18
+ <a href="{{site.social_media_channels.youtube.url}}" class="btn btn-social-icon"><span class="sr-only">Go to YouTube channel</span><i
19
19
  class="icon-youtube"></i></a>
20
20
  {% endif %}
21
21
  {% if site.social_media_channels.github %}
22
- <a href="{{site.social_media_channels.github.url}}" class="btn btn-social-icon"><i
22
+ <a href="{{site.social_media_channels.github.url}}" class="btn btn-social-icon"><span class="sr-only">Go to GitHub Page</span><i
23
23
  class="icon-github-circled"></i></a>
24
24
  {% endif %}
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  {% if include.poster_image %}
18
- {% assign youtube_poster_image_url = include.poster_image | remove_first: "/assets/images/" %}
18
+ {% assign youtube_poster_image_url = include.poster_image %}
19
19
  {% capture poster_img %}{% picture youtube_poster_image {{youtube_poster_image_url}} --alt {{title}} %}{% endcapture %}
20
20
  {% else %}
21
21
  {% capture poster_img %}https://img.youtube.com/vi/{{youtube_id}}/maxresdefault.jpg{% endcapture %}
@@ -9,9 +9,9 @@ css_package: blog
9
9
  {% assign author_name = page.name %}
10
10
  {% capture author_image_alt %}{{author_name}} image{% endcapture %}
11
11
  {% if author.image %}
12
- {% assign author_image = author.image | remove_first: "/assets/images/" %}
12
+ {% assign author_image = author.image %}
13
13
  {% else %}
14
- {% assign author_image = site.avatar_placeholder | remove_first: "/assets/images/" %}
14
+ {% assign author_image = site.avatar_placeholder %}
15
15
  {% endif %}
16
16
  <a href="{{author-url}}">
17
17
  {% picture author_thumbnail {{author_image}} --alt {{author_image_alt}} %}
@@ -6,7 +6,7 @@ css_package: blog
6
6
  <div
7
7
  class="jumbotron d-flex align-items-center jumbotron-fluid {% if page.image %}background_image{% endif%}">
8
8
  {% if page.image %}
9
- {% assign image_path = page.image | remove_first: "/assets/images/" %}
9
+ {% assign image_path = page.image %}
10
10
  {% picture header_image {{image_path}} %}
11
11
  {% endif %}
12
12
  <div class="container text-center">
@@ -18,9 +18,9 @@ css_package: blog
18
18
  {% assign author_name = author.name %}
19
19
  {% capture author_image_alt %}{{author_name}} image{% endcapture %}
20
20
  {% if author.image %}
21
- {% assign author_image = author.image | remove_first: "/assets/images/" %}
21
+ {% assign author_image = author.image %}
22
22
  {% else %}
23
- {% assign author_image = site.avatar_placeholder | remove_first: "/assets/images/" %}
23
+ {% assign author_image = site.avatar_placeholder %}
24
24
  {% endif %}
25
25
  <div itemprop="author" itemscope="" itemtype="http://schema.org/Person">
26
26
  <a href="{{author-url}}" itemprop="url" rel="author">
@@ -1,16 +1,19 @@
1
1
  /* Cookie Dialog */
2
2
  #gdpr-cookie-message {
3
3
  position: fixed;
4
- right: 30px;
5
- bottom: 30px;
6
- max-width: 375px;
7
4
  background-color: #eeeded;
8
5
  padding: 20px;
9
6
  border-radius: 5px;
10
7
  box-shadow: 0 15px 15px rgba(0,0,0,0.25);
11
- margin-left: 30px;
12
8
  font-family: 'Lato';
13
9
  z-index: 999999;
10
+ top: 0;
11
+ left: 0;
12
+ right: 0;
13
+ bottom: unset;
14
+ max-width: 100%;
15
+ margin: 20px;
16
+
14
17
  button#ihavecookiesBtn {
15
18
  margin-left: 0px !important;
16
19
  }
@@ -1,5 +1,24 @@
1
1
  #flow_wrapper {
2
2
  background-color: white;
3
+ #collapseSection {
4
+ .btn.btn-link {
5
+ &:after {
6
+ color: #666;
7
+ top: 10px;
8
+ right: 0px;
9
+ position: absolute;
10
+ margin-right: 30px;
11
+ font-family: "fontello";
12
+ font-size: 22px;
13
+ content: "\e80f";
14
+ }
15
+ &.collapsed {
16
+ &:after {
17
+ content: "\e80e";
18
+ }
19
+ }
20
+ }
21
+ }
3
22
  .row {
4
23
  padding: $flow_row_padding 0;
5
24
  &.background_image_row {
@@ -1,12 +1,12 @@
1
1
  @font-face {
2
2
  font-family: "fontello";
3
- src: url("/assets/fonts/fontello/fontello.eot?26029165");
4
- src: url("/assets/fonts/fontello/fontello.eot?26029165#iefix")
3
+ src: url("/assets/fonts/fontello/fontello.eot");
4
+ src: url("/assets/fonts/fontello/fontello.eot")
5
5
  format("embedded-opentype"),
6
- url("/assets/fonts/fontello/fontello.woff2?26029165") format("woff2"),
7
- url("/assets/fonts/fontello/fontello.woff?26029165") format("woff"),
8
- url("/assets/fonts/fontello/fontello.ttf?26029165") format("truetype"),
9
- url("/assets/fonts/fontello/fontello.svg?26029165#fontello") format("svg");
6
+ url("/assets/fonts/fontello/fontello.woff2") format("woff2"),
7
+ url("/assets/fonts/fontello/fontello.woff") format("woff"),
8
+ url("/assets/fonts/fontello/fontello.ttf") format("truetype"),
9
+ url("/assets/fonts/fontello/fontello.svg") format("svg");
10
10
  font-weight: normal;
11
11
  font-style: normal;
12
12
  }
@@ -46,111 +46,46 @@
46
46
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
47
47
  }
48
48
 
49
- .icon-search:before {
50
- content: "\e800";
51
- } /* '' */
52
- .icon-stop:before {
53
- content: "\e801";
54
- } /* '' */
55
- .icon-pause:before {
56
- content: "\e802";
57
- } /* '' */
58
- .icon-fast-fw:before {
59
- content: "\e803";
60
- } /* '' */
61
- .icon-fast-bw:before {
62
- content: "\e804";
63
- } /* '' */
64
- .icon-terminal:before {
65
- content: "\e805";
66
- } /* '' */
67
- .icon-basket:before {
68
- content: "\e806";
69
- } /* '' */
70
- .icon-users:before {
71
- content: "\e807";
72
- } /* '' */
73
- .icon-user:before {
74
- content: "\e808";
75
- } /* '' */
76
- .icon-folder-open:before {
77
- content: "\e809";
78
- } /* '' */
79
- .icon-github-circled-alt2:before {
80
- content: "\f056";
81
- } /* '' */
82
- .icon-link-ext:before {
83
- content: "\f08e";
84
- } /* '' */
85
- .icon-terminal-1:before {
86
- content: "\f120";
87
- } /* '' */
88
- .icon-play-circled:before {
89
- content: "\f144";
90
- } /* '' */
91
- .icon-link-ext-alt:before {
92
- content: "\f14c";
93
- } /* '' */
94
- .icon-youtube-squared:before {
95
- content: "\f166";
96
- } /* '' */
97
- .icon-youtube:before {
98
- content: "\f167";
99
- } /* '' */
100
- .icon-youtube-play:before {
101
- content: "\f16a";
102
- } /* '' */
103
- .icon-file-code:before {
104
- content: "\f1c9";
105
- } /* '' */
106
- .icon-newspaper:before {
107
- content: "\f1ea";
108
- } /* '' */
109
- .icon-cart-plus:before {
110
- content: "\f217";
111
- } /* '' */
112
- .icon-github:before {
113
- content: "\f300";
114
- } /* '' */
115
- .icon-github-circled:before {
116
- content: "\f301";
117
- } /* '' */
118
- .icon-flickr:before {
119
- content: "\f303";
120
- } /* '' */
121
- .icon-flickr-circled:before {
122
- content: "\f304";
123
- } /* '' */
124
- .icon-twitter:before {
125
- content: "\f309";
126
- } /* '' */
127
- .icon-twitter-circled:before {
128
- content: "\f30a";
129
- } /* '' */
130
- .icon-facebook:before {
131
- content: "\f30c";
132
- } /* '' */
133
- .icon-facebook-circled:before {
134
- content: "\f30d";
135
- } /* '' */
136
- .icon-facebook-squared:before {
137
- content: "\f30e";
138
- } /* '' */
139
- .icon-pinterest:before {
140
- content: "\f312";
141
- } /* '' */
142
- .icon-pinterest-circled:before {
143
- content: "\f313";
144
- } /* '' */
145
- .icon-linkedin:before {
146
- content: "\f318";
147
- } /* '' */
148
- .icon-linkedin-circled:before {
149
- content: "\f319";
150
- } /* '' */
151
- .icon-spotify-circled:before {
152
- content: "\f328";
153
- } /* '' */
154
- .icon-instagram:before {
155
- content: "\f32d";
156
- } /* '' */
49
+
50
+ .icon-search:before { content: '\e800'; } /* '' */
51
+ .icon-stop:before { content: '\e801'; } /* '' */
52
+ .icon-pause:before { content: '\e802'; } /* '' */
53
+ .icon-fast-fw:before { content: '\e803'; } /* '' */
54
+ .icon-fast-bw:before { content: '\e804'; } /* '' */
55
+ .icon-terminal:before { content: '\e805'; } /* '' */
56
+ .icon-basket:before { content: '\e806'; } /* '' */
57
+ .icon-users:before { content: '\e807'; } /* '' */
58
+ .icon-user:before { content: '\e808'; } /* '' */
59
+ .icon-folder-open:before { content: '\e809'; } /* '' */
60
+ .icon-minus:before { content: '\e80a'; } /* '' */
61
+ .icon-minus-circled:before { content: '\e80b'; } /* '' */
62
+ .icon-plus:before { content: '\e80c'; } /* '' */
63
+ .icon-plus-circled:before { content: '\e80d'; } /* '' */
64
+ .icon-down-open:before { content: '\e80e'; } /* '' */
65
+ .icon-up-open:before { content: '\e80f'; } /* '' */
66
+ .icon-github-circled-alt2:before { content: '\f056'; } /* '' */
67
+ .icon-link-ext:before { content: '\f08e'; } /* '' */
68
+ .icon-terminal-1:before { content: '\f120'; } /* '' */
69
+ .icon-play-circled:before { content: '\f144'; } /* '' */
70
+ .icon-link-ext-alt:before { content: '\f14c'; } /* '' */
71
+ .icon-youtube-squared:before { content: '\f166'; } /* '' */
72
+ .icon-youtube:before { content: '\f167'; } /* '' */
73
+ .icon-youtube-play:before { content: '\f16a'; } /* '' */
74
+ .icon-file-code:before { content: '\f1c9'; } /* '' */
75
+ .icon-newspaper:before { content: '\f1ea'; } /* '' */
76
+ .icon-cart-plus:before { content: '\f217'; } /* '' */
77
+ .icon-github:before { content: '\f300'; } /* '' */
78
+ .icon-github-circled:before { content: '\f301'; } /* '' */
79
+ .icon-flickr:before { content: '\f303'; } /* '' */
80
+ .icon-flickr-circled:before { content: '\f304'; } /* '' */
81
+ .icon-twitter:before { content: '\f309'; } /* '' */
82
+ .icon-twitter-circled:before { content: '\f30a'; } /* '' */
83
+ .icon-facebook:before { content: '\f30c'; } /* '' */
84
+ .icon-facebook-circled:before { content: '\f30d'; } /* '' */
85
+ .icon-facebook-squared:before { content: '\f30e'; } /* '' */
86
+ .icon-pinterest:before { content: '\f312'; } /* '' */
87
+ .icon-pinterest-circled:before { content: '\f313'; } /* '' */
88
+ .icon-linkedin:before { content: '\f318'; } /* '' */
89
+ .icon-linkedin-circled:before { content: '\f319'; } /* '' */
90
+ .icon-spotify-circled:before { content: '\f328'; } /* '' */
91
+ .icon-instagram:before { content: '\f32d'; } /* '' */
@@ -26,6 +26,18 @@
26
26
 
27
27
  <glyph glyph-name="folder-open" unicode="&#xe809;" d="M1049 319q0-17-18-37l-187-221q-24-28-67-48t-81-20h-607q-19 0-33 7t-15 24q0 17 17 37l188 221q24 28 67 48t80 20h607q19 0 34-7t15-24z m-192 192v-90h-464q-53 0-110-26t-92-67l-188-221-2-3q0 2-1 7t0 7v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q52 0 88-37t37-88z" horiz-adv-x="1071.4" />
28
28
 
29
+ <glyph glyph-name="minus" unicode="&#xe80a;" d="M786 439v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38v107q0 23 16 38t38 16h678q23 0 38-16t16-38z" horiz-adv-x="785.7" />
30
+
31
+ <glyph glyph-name="minus-circled" unicode="&#xe80b;" d="M679 314v72q0 14-11 25t-25 10h-429q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h429q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
32
+
33
+ <glyph glyph-name="plus" unicode="&#xe80c;" d="M786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q23 0 38-16t16-38z" horiz-adv-x="785.7" />
34
+
35
+ <glyph glyph-name="plus-circled" unicode="&#xe80d;" d="M679 314v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h143v-143q0-15 11-25t25-11h71q15 0 25 11t11 25v143h143q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" />
36
+
37
+ <glyph glyph-name="down-open" unicode="&#xe80e;" d="M939 399l-414-413q-10-11-25-11t-25 11l-414 413q-11 11-11 26t11 25l93 92q10 11 25 11t25-11l296-296 296 296q11 11 25 11t26-11l92-92q11-11 11-25t-11-26z" horiz-adv-x="1000" />
38
+
39
+ <glyph glyph-name="up-open" unicode="&#xe80f;" d="M939 107l-92-92q-11-10-26-10t-25 10l-296 297-296-297q-11-10-25-10t-25 10l-93 92q-11 11-11 26t11 25l414 414q11 10 25 10t25-10l414-414q11-11 11-25t-11-26z" horiz-adv-x="1000" />
40
+
29
41
  <glyph glyph-name="github-circled-alt2" unicode="&#xf056;" d="M0 350q0-130 63-235 63-109 171-171t235-63q127 0 235 63 109 63 171 171t62 235q0 129-62 235-63 109-171 171t-235 62q-130 0-235-63-109-63-171-171t-63-234z m78 0q0 78 31 151t84 125q53 53 125 84t151 30 150-30 126-84q53-53 83-125t31-151q0-84-34-160t-97-132-142-80v138q0 51-42 80 103 9 150 52t48 136q0 72-45 121 9 27 9 51 0 36-16 67-33 0-59-11t-63-37q-46 10-94 10-55 0-103-11-37 27-63 38t-61 11q-16-31-16-67 0-25 9-51-45-48-45-121 0-93 48-136t151-52q-27-19-38-54-24-8-50-8-19 0-34 8-4 3-8 5t-7 7-7 6-6 8-5 7-6 7-5 7q-23 30-55 30-17 0-17-7 0-3 9-10 15-13 16-14 12-10 13-12 14-18 22-39 27-61 93-61 11 0 42 5v-103q-80 25-142 80t-96 132-35 160z" horiz-adv-x="937.5" />
30
42
 
31
43
  <glyph glyph-name="link-ext" unicode="&#xf08e;" d="M786 332v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13z m214 482v-285q0-15-11-25t-25-11-25 11l-98 98-364-364q-5-6-13-6t-12 6l-64 64q-6 5-6 12t6 13l364 364-98 98q-11 11-11 25t11 25 25 11h285q15 0 25-11t11-25z" horiz-adv-x="1000" />
@@ -110,7 +110,7 @@
110
110
 
111
111
  // Display cookie message on page
112
112
  var cookieMessage =
113
- '<div id="gdpr-cookie-message"><h4>' +
113
+ '<div id="gdpr-cookie-message"><div class="container"><h4>' +
114
114
  settings.title +
115
115
  "</h4><p>" +
116
116
  settings.message +
@@ -136,7 +136,7 @@
136
136
  settings.acceptBtnLabel +
137
137
  '</button><button id="gdpr-cookie-advanced" type="button">' +
138
138
  settings.advancedBtnLabel +
139
- "</button></p></div>";
139
+ "</button></p></div></div>";
140
140
  setTimeout(function () {
141
141
  $($element).append(cookieMessage);
142
142
  $("#gdpr-cookie-message")
@@ -8,10 +8,10 @@ layout: null
8
8
  "category": "{{ post.category }}",
9
9
  "content": "{{ post.content | strip_html | strip_newlines | remove_chars | escape }}",
10
10
  "image": "{% if post.image %}
11
- {% assign image_path = post.image | remove_first: '/assets/images/' %}
11
+ {% assign image_path = post.image %}
12
12
  {% capture image_alt %}{{post.title}} image {% endcapture %}
13
13
  {% else %}
14
- {% assign image_path = site.post_placeholder | remove_first: '/assets/images/' %}
14
+ {% assign image_path = site.post_placeholder %}
15
15
  {% capture image_alt %}{{post.title}} placeholder image {% endcapture %}
16
16
  {% endif %}{% picture post_thumb_src_only {{image_path}} --alt {{image_alt}} %}",
17
17
  "tags": "{{ post.tags | join: ', ' }}",
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: 6.0.0.3
4
+ version: 6.0.1.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: 2020-05-29 00:00:00.000000000 Z
11
+ date: 2020-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -192,6 +192,7 @@ files:
192
192
  - _includes/flow/button.html
193
193
  - _includes/flow/buttons.html
194
194
  - _includes/flow/call-to-action-banner.html
195
+ - _includes/flow/collapse.html
195
196
  - _includes/flow/container_row.html
196
197
  - _includes/flow/feature_block.html
197
198
  - _includes/flow/flow_inner.html