summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/post.liquid6
1 files changed, 5 insertions, 1 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
index f4c4374..fa459bc 100644
--- a/_layouts/post.liquid
+++ b/_layouts/post.liquid
@@ -8,9 +8,13 @@
<div class="column mb-2 content">
<h1>
<a href="{{ site.baseurl}}{{ page.url }}">
- {{ page.date | date: "%b %-d, %Y" }} - {{ page.title }}
+ {{ page.title }}
</a>
</h1>
+ <h2>
+ {% capture month%}{{ page.date | date: "%b" }}{% endcapture %}
+ {{ site.data[site.active_lang].strings.date[month]}} {{ page.date | date: "%d, %Y" }}
+ </h2>
{{ content }}
</div>
{% include navigation_buttons.liquid %}