jumbo-jekyll-theme 6.0.0.5 → 6.0.1.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/_includes/blog/authors_posts.html +2 -2
- data/_includes/blog/display_latest_posts.html +8 -8
- data/_includes/blog/post_sidebar.html +4 -4
- data/_includes/components/github_edit.html +6 -6
- data/_includes/components/jumbotron.html +2 -2
- data/_includes/flow/blocks.html +1 -1
- data/_includes/flow/container_row.html +1 -1
- data/_includes/flow/feature_block.html +1 -1
- data/_includes/flow/members-section.html +1 -1
- data/_includes/flow/slider.html +1 -1
- data/_includes/image.html +1 -1
- data/_includes/nav/brand.html +1 -1
- data/_includes/nav/universal_nav.html +2 -2
- data/_includes/social_media_icons.html +6 -6
- data/_includes/youtube.html +1 -1
- data/_layouts/author.html +2 -2
- data/_layouts/post.html +3 -3
- data/assets/json/posts.json +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbe4c210d37585f7a3c6ad109cf7ec284047c41163fa32bad6b9128eab3ff29a
|
|
4
|
+
data.tar.gz: d72ce8e70c1ef658d9e2fbf3355d4336264ee38fb89c9abfb36414d6cc4bb88d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5e308e2435ab0f152844f44d8c501824d6100d79c94ccd1fd43d8094ec4ed64da3ce409c3e9f44f196a0b9844ef27825f9559c13320800dbcbbcb7bb62bc609
|
|
7
|
+
data.tar.gz: c5f7c01fcbce144b5b437bd6c4307fb5473421d66db7af5a13264674dfab50d7636611f6a64a95af343c5e8e64ebcac1a15c57f9a0fafed8ea0187e767ab0771
|
data/_config.yml
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
33
|
+
{% assign author_image = author.image %}
|
|
34
34
|
{% else %}
|
|
35
|
-
{% assign author_image = site.avatar_placeholder
|
|
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
|
|
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
|
|
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
|
|
80
|
+
{% assign author_image = author.image %}
|
|
81
81
|
{% else %}
|
|
82
|
-
{% assign author_image = site.avatar_placeholder
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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">
|
|
@@ -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"
|
|
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
|
|
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
|
|
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
|
|
45
|
+
{% assign image_path = page.jumbotron.image %}
|
|
46
46
|
{% picture header_image {{image_path}} %}
|
|
47
47
|
{% endif %}
|
|
48
48
|
{% if page.jumbotron.video %}
|
data/_includes/flow/blocks.html
CHANGED
|
@@ -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
|
|
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 %}
|
|
@@ -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
|
|
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
|
|
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
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
data-src="{{member.image.path}}"/>
|
|
14
14
|
</div>
|
|
15
15
|
{% else %}
|
|
16
|
-
{% assign image_path = member.image.path
|
|
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-->
|
data/_includes/flow/slider.html
CHANGED
|
@@ -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
|
|
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 %}
|
data/_includes/image.html
CHANGED
|
@@ -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
|
|
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 %}
|
data/_includes/nav/brand.html
CHANGED
|
@@ -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="
|
|
17
|
+
<a class="nav-link dropdown-toggle" target="_self" href="#" id="universalNavbarDropdown" 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="
|
|
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 %}
|
data/_includes/youtube.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
{% if include.poster_image %}
|
|
18
|
-
{% assign youtube_poster_image_url = include.poster_image
|
|
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 %}
|
data/_layouts/author.html
CHANGED
|
@@ -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
|
|
12
|
+
{% assign author_image = author.image %}
|
|
13
13
|
{% else %}
|
|
14
|
-
{% assign author_image = site.avatar_placeholder
|
|
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}} %}
|
data/_layouts/post.html
CHANGED
|
@@ -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
|
|
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
|
|
21
|
+
{% assign author_image = author.image %}
|
|
22
22
|
{% else %}
|
|
23
|
-
{% assign author_image = site.avatar_placeholder
|
|
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">
|
data/assets/json/posts.json
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
4
|
+
version: 6.0.1.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: 2020-06-
|
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|