jumbo-jekyll-theme 4.3.2 → 4.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/display-blog-posts.html +1 -1
- data/_includes/read_time.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b89249af776ac4bdaba2a00eb47c2398f633094d9f49365354b48c32c307daf
|
4
|
+
data.tar.gz: 220ca554252cc9e91b56c35972e9dc027c017a52eb099969b60ae96095295c98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8b3288b303b0ef25c7835384fd04c8e1dba49fb186690a87479cc95ec27ff584d14304e5eaa863e97cb3a406f9bedbec31abf543bff4941605499db4ca44c08
|
7
|
+
data.tar.gz: b036410833ed951247640e82681bc4a4e44df2ee6d48113d4a4b616111becd7cd620a5501dc2240f3bd64bd0fd53140b2e5fb5903a5a6372976ac73d3b59f2af
|
@@ -130,7 +130,7 @@
|
|
130
130
|
<div class="blog-post-item-content">
|
131
131
|
<div class="post-cat">{{post.categories | first | capitalize }}</div>
|
132
132
|
{% if site.data.settings.blog.reading_time %}
|
133
|
-
{% include read_time.html %}
|
133
|
+
{% include read_time.html content=post.content %}
|
134
134
|
{% endif %}
|
135
135
|
<h3>{{ post.title}}</h3>
|
136
136
|
{% if post_in_seconds > recent_posts %}
|
data/_includes/read_time.html
CHANGED
@@ -4,4 +4,4 @@
|
|
4
4
|
{% else %}
|
5
5
|
{% assign words = content | number_of_words %}
|
6
6
|
{% endif %}
|
7
|
-
<span class="reading-time" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins{% endif %}</span>
|
7
|
+
<span class="reading-time" title="Estimated read time">{% if words < 360 %}1 min read{% else %}{{ words | divided_by:180 }} mins read{% endif %}</span>
|