diff options
Diffstat (limited to '')
-rw-r--r-- | _layouts/post.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 0bb165f..71e47f3 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -3,11 +3,13 @@ layout: default --- <article> <section class="header"> - {{ site.t.posted_on[page.lang] }} {% include i18n-date.html date=page.date %} + {{ site.t.posted_on[page.lang] }} + {% include i18n-date.html date=page.date %} </section> {% if page.updated_at %} - <section class="header"> - {{ site.t.updated_at[page.lang] }} + <section class="header"> + {{ site.t.updated_at[page.lang] }} + {% include i18n-date.html date=page.updated_at %} </section> {% endif %} <section> |