File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 16
16
{% for post in paginator.posts %}
17
17
< div class ="blog-item ">
18
18
< h2 > < a href ="{{post.url}} "> {{post.title}}</ a > </ h2 >
19
- < p class ="blog-date "> {{post.date | date: "%A %-d %B %Y"}}</ p >
19
+ < time datetime =" {{post.date}} " class ="blog-date "> {{post.date | date: "%A %-d %B %Y"}}</ time >
20
20
{% if post.by %}< p class ="blog-author "> {{post.by}}</ p > {% endif %}
21
21
{% if post.tags %}
22
22
< ul class ="tag-list ">
23
23
{% for tag in post.tags %}
24
24
< li class ="tag-item "> {{tag}}</ li >
25
- {% endfor %}
25
+ {% endfor %}
26
26
</ ul >
27
27
{% endif %}
28
28
</ div >
@@ -37,7 +37,7 @@ <h2><a href="{{post.url}}">{{post.title}}</a></h2>
37
37
38
38
{% capture urlPath %}{% if include.category == "all" %}blog{% else %}{{currentCategoryPath}}{% endif %}{% endcapture %}
39
39
{% assign urlPath = urlPath | split: '/' | join: '/' | remove_first: '/' %}
40
- {% include paginator.html urlPath=urlPath %}
40
+ {% include paginator.html urlPath=urlPath %}
41
41
</ div >
42
42
{% assign highlights = "" | split: "," %}
43
43
{% for post in site.posts %}
@@ -51,7 +51,7 @@ <h2><a href="{{post.url}}">{{post.title}}</a></h2>
51
51
< div class ="content-nav-blog ">
52
52
< div class ="inner-box ">
53
53
< h5 > Highlights</ h5 >
54
- < div class ="blog-list-nav ">
54
+ < div class ="blog-list-nav ">
55
55
{% endif %}
56
56
< div class ="blog-list-nav-item ">
57
57
< h4 > < a href ="{{post.url}} "> {{post.title}}</ a > </ h4 >
@@ -70,6 +70,6 @@ <h4><a href="{{post.url}}">{{post.title}}</a></h4>
70
70
</ div >
71
71
{% endif %}
72
72
{% endfor %}
73
-
73
+
74
74
</ div >
75
- </ section >
75
+ </ section >
Original file line number Diff line number Diff line change 4
4
< div class ="inner-box ">
5
5
< div class ="blog-detail-head ">
6
6
< div >
7
- < p > {{page.date | date: "%A %-d %B %Y"}}</ p >
7
+ < time datetime =" {{page.date}} " > {{page.date | date: "%A %-d %B %Y"}}</ time >
8
8
< p > {{page.by}}</ p >
9
9
</ div >
10
10
{% if page.tags %}
Original file line number Diff line number Diff line change 3
3
---
4
4
5
5
< div class ="main-page-column ">
6
- < div class ="article-date "> {{ page.date | date: "%B %-d, %Y" }}</ div >
6
+ < time datetime =" {{page.date}} " class ="article-date "> {{ page.date | date: "%B %-d, %Y" }}</ time >
7
7
{% if page.by %}
8
8
< div class ="written "> Written By: < span class ="by "> {{ page.by }}</ span > </ div >
9
9
{% endif %}
You can’t perform that action at this time.
0 commit comments