Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d30025

Browse files
committedAug 5, 2020
Upgrade theme to 4.20.1
1 parent 4534ad0 commit 5d30025

32 files changed

+370
-151
lines changed
 

‎_data/ui-text.yml

Lines changed: 224 additions & 35 deletions
Large diffs are not rendered by default.

‎_includes/archive-single.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,21 @@
1010
{% assign title = post.title %}
1111
{% endif %}
1212

13-
<div class="{{ include.type | default: "list" }}__item">
13+
<div class="{{ include.type | default: 'list' }}__item">
1414
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
1515
{% if include.type == "grid" and teaser %}
1616
<div class="archive__item-teaser">
1717
<img src="{{ teaser | relative_url }}" alt="">
1818
</div>
1919
{% endif %}
20-
<h2 class="archive__item-title" itemprop="headline">
20+
<h2 class="archive__item-title no_toc" itemprop="headline">
2121
{% if post.link %}
2222
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
2323
{% else %}
2424
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
2525
{% endif %}
2626
</h2>
27-
{% if post.read_time %}
28-
<p class="page__meta"><i class="far fa-calendar-alt" aria-hidden="true"></i>{{ post.date | date: "%Y-%m-%d" }} <i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
29-
{% endif %}
27+
{% include post__meta.html type=include.type %}
3028
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
3129
</article>
3230
</div>

‎_includes/author-profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<div class="author__content">
1919
{% if author.home %}
20-
<a href="{{ author_link }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a>
20+
<a href="{{ author.home | relative_url }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a>
2121
{% else %}
2222
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
2323
{% endif %}

‎_includes/footer.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
<head>
2-
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css">
3-
</head>
41
<div class="page__footer-follow">
52
<ul class="social-icons">
63
{% if site.data.ui-text[site.locale].follow_label %}

‎_includes/head.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
<head>
2-
<meta charset="UTF-8">
3-
<link rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/5.11.2/css/all.css">
4-
</head>
1+
<meta charset="utf-8">
52

63
{% include seo.html %}
74

@@ -16,6 +13,7 @@
1613

1714
<!-- For all browsers -->
1815
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
16+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css">
1917

2018
<!--[if IE]>
2119
<style>

‎_includes/page__hero.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ <h1 id="page-title" class="page__title" itemprop="headline">
3131
{% elsif page.header.show_overlay_excerpt != false and page.excerpt %}
3232
<p class="page__lead">{{ page.excerpt | markdownify | remove: "<p>" | remove: "</p>" }}</p>
3333
{% endif %}
34-
{% if page.read_time %}
35-
<p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
36-
{% endif %}
34+
{% include post__meta.html %}
3735
{% if page.header.cta_url %}
3836
<p><a href="{{ page.header.cta_url | relative_url }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
3937
{% endif %}

‎_includes/page__hero_video.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
{% capture video_id %}{{ page.header.video.id }}{% endcapture %}
2-
{% capture video_provider %}{{ page.header.video.provider }}{% endcapture %}
3-
4-
{% include video id=video_id provider=video_provider %}
1+
{% assign video = page.header.video %}
2+
{% include video id=video.id provider=video.provider danmaku=video.danmaku %}

‎_includes/post-date.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

‎_includes/post__meta.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{% assign page = post | default: page %}
2+
3+
{% if page.read_time or page.show_date %}
4+
<p class="page__meta">
5+
6+
{% if page.show_date %}
7+
{% assign date = page.date %}
8+
<i class="far {% if include.type == 'grid' and page.read_time and page.show_date %}fa-fw {% endif %}fa-calendar-alt" aria-hidden="true"></i>
9+
<time datetime="{{ date | date_to_xmlschema }}">{{ date | date: "%B %-d, %Y" }}</time>
10+
{% endif %}
11+
12+
{% if page.read_time and page.show_date %}
13+
{% if include.type == "grid" %}
14+
<br \>
15+
{% else %}
16+
<span class="post__meta-sep"></span>
17+
{% endif %}
18+
{% endif %}
19+
20+
{% if page.read_time %}
21+
{% assign words_per_minute = page.words_per_minute | default: site.words_per_minute | default: 200 %}
22+
{% assign words = page.content | strip_html | number_of_words %}
23+
24+
<i class="far {% if include.type == 'grid' and page.read_time and page.show_date %}fa-fw {% endif %}fa-clock" aria-hidden="true"></i>
25+
{% if words < words_per_minute %}
26+
{{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
27+
{% elsif words == words_per_minute %}
28+
1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
29+
{% else %}
30+
{{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
31+
{% endif %}
32+
{% endif %}
33+
34+
</p>
35+
{% endif %}

‎_includes/read-time.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

‎_includes/scripts.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<script src="{{ script | relative_url }}"></script>
44
{% endfor %}
55
{% else %}
6-
<script src="https://cdn.jsdelivr.net/gh/sunete/sunete.github.io/assets/js/main.min.js"></script>
7-
<script src="https://kit.fontawesome.com/4eee35f757.js"></script>
6+
<script src="{{ '/assets/js/main.min.js' | relative_url }}"></script>
87
{% endif %}
98

109
{% if site.search == true or page.layout == "search" %}

‎_includes/search/algolia-search-scripts.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,18 @@ <h2 class="archive__item-title" itemprop="headline"><a href="{{ site.baseurl }}$
4444
instantsearch.widgets.hits({
4545
container: '.search-hits',
4646
templates: {
47-
item: hitTemplate
47+
item: hitTemplate,
48+
empty: '{{ site.data.ui-text[site.locale].search_algolia_no_results | default: "No results" }}',
4849
}
4950
})
5051
);
5152

52-
// Starting the search
53-
search.start();
53+
// Starting the search only when toggle is clicked
54+
$(document).ready(function () {
55+
$(".search__toggle").on("click", function() {
56+
if(!search.started) {
57+
search.start();
58+
}
59+
});
60+
});
5461
</script>

‎_includes/video

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
{% capture video_id %}{{ include.id }}{% endcapture %}
22
{% capture video_provider %}{{ include.provider }}{% endcapture %}
3+
{% capture video_danmaku %}{{ include.danmaku | default: 0 }}{% endcapture %}
4+
5+
{% capture video_src %}
6+
{% case video_provider %}
7+
{% when "vimeo" %}
8+
https://player.vimeo.com/video/{{ video_id }}?dnt=true
9+
{% when "youtube" %}
10+
https://www.youtube-nocookie.com/embed/{{ video_id }}
11+
{% when "google-drive" %}
12+
https://drive.google.com/file/d/{{ video_id }}/preview
13+
{% when "bilibili" %}
14+
https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku={{ video_danmaku }}
15+
{% endcase %}
16+
{% endcapture %}
17+
{% assign video_src = video_src | strip %}
318

419
<!-- Courtesy of embedresponsively.com //-->
5-
<div class="responsive-video-container">
6-
{% if video_provider == "vimeo" %}
7-
<iframe src="https://player.vimeo.com/video/{{ video_id }}?dnt=true" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
8-
{% elsif video_provider == "youtube" %}
9-
<iframe src="https://www.youtube-nocookie.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
10-
{% elsif video_provider == "google-drive" %}
11-
<iframe src="https://drive.google.com/file/d/{{ video_id }}/preview" frameborder="0" allowfullscreen></iframe>
12-
{% elsif video_provider == "bilibili" %}
13-
<iframe src="https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>
14-
{% endif %}
15-
</div>
20+
{% unless video_src == "" %}
21+
<div class="responsive-video-container">
22+
<iframe src="{{ video_src }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe>
23+
</div>
24+
{% endunless %}

‎_layouts/categories.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@
2525
{% endfor %}
2626
</ul>
2727

28+
{% assign entries_layout = page.entries_layout | default: 'list' %}
2829
{% for i in (1..categories_max) reversed %}
2930
{% for category in site.categories %}
3031
{% if category[1].size == i %}
3132
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
3233
<h2 class="archive__subtitle">{{ category[0] }}</h2>
33-
<div class="entries-{{ page.entries_layout | default: 'list' }}">
34+
<div class="entries-{{ entries_layout }}">
3435
{% for post in category.last %}
35-
{% include archive-single.html type=page.entries_layout %}
36+
{% include archive-single.html type=entries_layout %}
3637
{% endfor %}
3738
</div>
3839
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>

‎_layouts/category.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
{{ content }}
66

7-
<div class="entries-{{ page.entries_layout }}">
8-
{% include posts-category.html taxonomy=page.taxonomy type=page.entries_layout %}
7+
{% assign entries_layout = page.entries_layout | default: 'list' %}
8+
<div class="entries-{{ entries_layout }}">
9+
{% include posts-category.html taxonomy=page.taxonomy type=entries_layout %}
910
</div>

‎_layouts/collection.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
{{ content }}
66

7-
<div class="entries-{{ page.entries_layout }}">
8-
{% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=page.entries_layout %}
7+
{% assign entries_layout = page.entries_layout | default: 'list' %}
8+
<div class="entries-{{ entries_layout }}">
9+
{% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=entries_layout %}
910
</div>

‎_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<!doctype html>
55
<!--
6-
Minimal Mistakes Jekyll Theme 4.19.2 by Michael Rose
6+
Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
77
Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
88
Free for personal and commercial use under the MIT license
99
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE

‎_layouts/home.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | d
1212
{% assign posts = site.posts %}
1313
{% endif %}
1414

15-
{% for post in posts %}
16-
{% include archive-single.html %}
17-
{% endfor %}
15+
{% assign entries_layout = page.entries_layout | default: 'list' %}
16+
<div class="entries-{{ entries_layout }}">
17+
{% for post in posts %}
18+
{% include archive-single.html type=entries_layout %}
19+
{% endfor %}
20+
</div>
1821

1922
{% include paginator.html %}

‎_layouts/posts.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{{ content }}
66

77
<ul class="taxonomy__index">
8-
{% assign postsInYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
8+
{% assign postsInYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %}
99
{% for year in postsInYear %}
1010
<li>
1111
<a href="#{{ year.name }}">
@@ -15,13 +15,14 @@
1515
{% endfor %}
1616
</ul>
1717

18-
{% assign postsByYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
18+
{% assign entries_layout = page.entries_layout | default: 'list' %}
19+
{% assign postsByYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %}
1920
{% for year in postsByYear %}
2021
<section id="{{ year.name }}" class="taxonomy__section">
2122
<h2 class="archive__subtitle">{{ year.name }}</h2>
22-
<div class="entries-{{ page.entries_layout | default: 'list' }}">
23+
<div class="entries-{{ entries_layout }}">
2324
{% for post in year.items %}
24-
{% include archive-single.html type=page.entries_layout %}
25+
{% include archive-single.html type=entries_layout %}
2526
{% endfor %}
2627
</div>
2728
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>

‎_layouts/single.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727
{% unless page.header.overlay_color or page.header.overlay_image %}
2828
<header>
2929
{% if page.title %}<h1 id="page-title" class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
30-
{% if page.read_time %}
31-
<p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
32-
{% endif %}
30+
{% include post__meta.html %}
3331
</header>
3432
{% endunless %}
3533

‎_layouts/tag.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
{{ content }}
66

7-
<div class="entries-{{ page.entries_layout | default: 'list' }}">
8-
{% include posts-tag.html taxonomy=page.taxonomy type=page.entries_layout %}
7+
{% assign entries_layout = page.entries_layout | default: 'list' %}
8+
<div class="entries-{{ entries_layout }}">
9+
{% include posts-tag.html taxonomy=page.taxonomy type=entries_layout %}
910
</div>

‎_layouts/tags.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@
2525
{% endfor %}
2626
</ul>
2727

28+
{% assign entries_layout = page.entries_layout | default: 'list' %}
2829
{% for i in (1..tags_max) reversed %}
2930
{% for tag in site.tags %}
3031
{% if tag[1].size == i %}
3132
<section id="{{ tag[0] | slugify | downcase }}" class="taxonomy__section">
3233
<h2 class="archive__subtitle">{{ tag[0] }}</h2>
33-
<div class="entries-{{ page.entries_layout | default: 'list' }}">
34+
<div class="entries-{{ entries_layout }}">
3435
{% for post in tag.last %}
35-
{% include archive-single.html type=page.entries_layout %}
36+
{% include archive-single.html type=entries_layout %}
3637
{% endfor %}
3738
</div>
3839
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>

‎_sass/minimal-mistakes.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Minimal Mistakes Jekyll Theme 4.19.2 by Michael Rose
2+
* Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
33
* Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
44
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
55
*/

‎_sass/minimal-mistakes/_archive.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333

3434
.archive__subtitle {
35-
margin: 1.414em 0 0;
35+
margin: 1.414em 0 0.5em;
3636
padding-bottom: 0.5em;
3737
font-size: $type-size-5;
3838
color: $muted-text-color;

‎_sass/minimal-mistakes/_notices.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
h4 {
2525
margin-top: 0 !important; /* override*/
2626
margin-bottom: 0.75em;
27+
line-height: inherit;
2728
}
2829

2930
@at-root .page__content #{&} h4 {

‎_sass/minimal-mistakes/_page.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,12 @@ body {
299299
text-transform: uppercase;
300300
}
301301

302+
.post__meta-sep::before {
303+
content: "\2022";
304+
padding-left: 0.5em;
305+
padding-right: 0.5em;
306+
}
307+
302308
/*
303309
Page taxonomy
304310
========================================================================== */

‎assets/js/lunr/lunr-en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: null
2+
layout: none
33
---
44

55
var idx = lunr(function () {

‎assets/js/lunr/lunr-gr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: null
2+
layout: none
33
---
44

55
step1list = new Array();

‎assets/js/lunr/lunr-store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: null
2+
layout: none
33
---
44

55
var store = [

‎assets/js/main.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
/*
2-
GreedyNav.js - https://github.com/lukejacksonn/GreedyNav
2+
GreedyNav.js - http://lukejacksonn.com/actuate
33
Licensed under the MIT license - http://opensource.org/licenses/MIT
44
Copyright (c) 2015 Luke Jackson
55
*/
66

7-
$(document).ready(function() {
7+
$(function() {
8+
89
var $btn = $("nav.greedy-nav .greedy-nav__toggle");
910
var $vlinks = $("nav.greedy-nav .visible-links");
1011
var $hlinks = $("nav.greedy-nav .hidden-links");
1112

1213
var numOfItems = 0;
1314
var totalSpace = 0;
15+
var closingTime = 1000;
1416
var breakWidths = [];
1517

1618
// Get initial state
@@ -20,49 +22,53 @@ $(document).ready(function() {
2022
breakWidths.push(totalSpace);
2123
});
2224

23-
var availableSpace, numOfVisibleItems, requiredSpace;
25+
var availableSpace, numOfVisibleItems, requiredSpace, timer;
2426

2527
function check() {
28+
2629
// Get instant state
27-
availableSpace = $vlinks.width() - $btn.width();
30+
availableSpace = $vlinks.width() - 10;
2831
numOfVisibleItems = $vlinks.children().length;
2932
requiredSpace = breakWidths[numOfVisibleItems - 1];
3033

31-
// There is not enough space
34+
// There is not enought space
3235
if (requiredSpace > availableSpace) {
33-
$vlinks
34-
.children()
35-
.last()
36-
.prependTo($hlinks);
36+
$vlinks.children().last().prependTo($hlinks);
3737
numOfVisibleItems -= 1;
3838
check();
3939
// There is more than enough space
4040
} else if (availableSpace > breakWidths[numOfVisibleItems]) {
41-
$hlinks
42-
.children()
43-
.first()
44-
.appendTo($vlinks);
41+
$hlinks.children().first().appendTo($vlinks);
4542
numOfVisibleItems += 1;
4643
check();
4744
}
4845
// Update the button accordingly
4946
$btn.attr("count", numOfItems - numOfVisibleItems);
5047
if (numOfVisibleItems === numOfItems) {
51-
$btn.addClass("hidden");
52-
} else {
53-
$btn.removeClass("hidden");
54-
}
48+
$btn.addClass('hidden');
49+
} else $btn.removeClass('hidden');
5550
}
5651

5752
// Window listeners
5853
$(window).resize(function() {
5954
check();
6055
});
6156

62-
$btn.on("click", function() {
63-
$hlinks.toggleClass("hidden");
64-
$(this).toggleClass("close");
57+
$btn.on('click', function() {
58+
$hlinks.toggleClass('hidden');
59+
clearTimeout(timer);
6560
});
6661

62+
$hlinks.on('mouseleave', function() {
63+
// Mouse has left, start the timer
64+
timer = setTimeout(function() {
65+
$hlinks.addClass('hidden');
66+
}, closingTime);
67+
}).on('mouseenter', function() {
68+
// Mouse is back, cancel the timer
69+
clearTimeout(timer);
70+
})
71+
6772
check();
68-
});
73+
74+
});

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "minimal-mistakes",
3-
"version": "4.19.2",
3+
"version": "4.20.1",
44
"description": "Minimal Mistakes 2 column Jekyll theme.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.