We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3b54c commit 2c853d4Copy full SHA for 2c853d4
_layouts/post.html
@@ -6,7 +6,7 @@
6
{% if page.title %}<h2>{{ page.title }}</h2>{% endif %}
7
<ul>
8
{% if page.author %}<li>by {{ page.author }}</li>{% endif %}
9
- <li>{{ page.date }}</li>
+ <li>{{ page.date | date_to_string }}</li>
10
</ul>
11
</header>
12
{{ content }}
blog/index.html
@@ -10,7 +10,7 @@ <h2>Blog</h2>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
{% if post.author %}<li>by {{ post.author }}</li>{% endif %}
13
- <li>{{ post.date }}</li>
+ <li>{{ post.date | date_to_string }}</li>
14
15
16
<p> {{ post.excerpt }} </p>
0 commit comments