typographical 1.1.14 → 1.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +11 -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: '0159fd82696caf6d0340158e4878e7450c6e9fba16202de3a633cdb20fec1968'
|
4
|
+
data.tar.gz: 38194723f343ec03d1b2962d4208bc02e14e8704d6365debc1a0e79bb274f583
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c34a68305770d60d277332f9ca4d744f91011f183255a387c66d1da5bb631701f310bf7e982b0ea8d67b8f6b6917ad10148bf1c3e51304d901227747957cd5ca
|
7
|
+
data.tar.gz: 79da032efcf60f8d3de5674cf2ffa33730db38a1d3cdb156f3b7ae7489433e7a811265e231a7eb9333defd18a58874f8247b43801b9ab48c3c0804e7dfe649d7
|
data/_layouts/home.html
CHANGED
@@ -6,7 +6,7 @@ layout: default
|
|
6
6
|
{% for post in paginator.posts %}
|
7
7
|
<a href="{{ post.url | prepend: site.baseurl }}" class="catalogue-item">
|
8
8
|
<div>
|
9
|
-
<time datetime="{{ post.date }}" class="catalogue-time">{{ post.date |
|
9
|
+
<time datetime="{{ post.date }}" class="catalogue-time">{{ post.date | date_to_long_string }}</time>{% if site.wpm %}<span class="catalogue-time"> | {{ post.content | number_of_words | divided_by: site.wpm }} min read</span>{% endif %}
|
10
10
|
<h1 class="catalogue-title">{{ post.title | smartify }}</h1>
|
11
11
|
<div class="catalogue-line"></div>
|
12
12
|
|
data/_layouts/post.html
CHANGED
@@ -20,7 +20,17 @@ layout: default
|
|
20
20
|
|
21
21
|
{% if page.date %}
|
22
22
|
<br>
|
23
|
-
<time datetime="{{ page.date }}">{{ page.date |
|
23
|
+
<time datetime="{{ page.date }}">{{ page.date | date_to_long_string }}</time>{% if page.published == false %} (unpublished){% endif %}
|
24
|
+
<div class="hidden">
|
25
|
+
<!-- The date and time when your article was originally published -->
|
26
|
+
<time class="op-published" datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date_to_string: "ordinal" }}</time>
|
27
|
+
</div>
|
28
|
+
{% endif %}
|
29
|
+
{% if page.modified %}
|
30
|
+
<div class="hidden">
|
31
|
+
<!-- The date and time when your article was last updated -->
|
32
|
+
<time class="op-modified" dateTime="{{ page.modified | date_to_xmlschema }}">{{ page.modified | date_to_string: "ordinal" }}</time>
|
33
|
+
</div>
|
24
34
|
{% endif %}
|
25
35
|
</div>
|
26
36
|
|