add date to posts list
This commit is contained in:
parent
9a6e8dd18f
commit
4bf5c7c094
2 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ layout: default
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="blog-home__list-items__item__header__description">
|
<div class="blog-home__list-items__item__header__description">
|
||||||
|
<span>{{post.date | date_to_string}}</span> •
|
||||||
<span>{{post.description}}</span>
|
<span>{{post.description}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -20,7 +20,7 @@ layout: default
|
||||||
<div class="blog-post__header__meta">
|
<div class="blog-post__header__meta">
|
||||||
<span>
|
<span>
|
||||||
<time
|
<time
|
||||||
datetime="{{ page.date | date_to_xmlschema }}"
|
datetime="{{ page.date | date: "%-d %B %Y" }}"
|
||||||
itemprop="datePublished"
|
itemprop="datePublished"
|
||||||
>
|
>
|
||||||
{% if page.author %} By
|
{% if page.author %} By
|
||||||
|
|
Loading…
Reference in a new issue