-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpost-meta-info.html
30 lines (27 loc) · 1.47 KB
/
post-meta-info.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div>
<time datetime="{{ include.post_date | date_to_xmlschema }}" itemprop="datePublished">
{% assign m = include.post_date | date: "%-m" %}
{% case m %}
{% when '1' %}{{ site.t[include.post_lang].months.january }}
{% when '2' %}{{ site.t[include.post_lang].months.february }}
{% when '3' %}{{ site.t[include.post_lang].months.march }}
{% when '4' %}{{ site.t[include.post_lang].months.april }}
{% when '5' %}{{ site.t[include.post_lang].months.may }}
{% when '6' %}{{ site.t[include.post_lang].months.june }}
{% when '7' %}{{ site.t[include.post_lang].months.july }}
{% when '8' %}{{ site.t[include.post_lang].months.august }}
{% when '9' %}{{ site.t[include.post_lang].months.september }}
{% when '10' %}{{ site.t[include.post_lang].months.october }}
{% when '11' %}{{ site.t[include.post_lang].months.november }}
{% when '12' %}{{ site.t[include.post_lang].months.december }}
{% endcase %}
{{ include.post_date | date: " %-d, %Y" }}
</time>
<span style="padding-left: 5px; padding-right: 5px;"> • </span>
<span itemprop="readtime">
{% capture read_time %}{% include read-time.html %}{% endcapture %}{{ read_time | strip }}
</span>
<span style="padding-left: 5px; padding-right: 5px;"> • </span>
{% assign canonical_url = include.post_url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url %}
<!-- here comments count -->
</div>