diff --git a/layout/_partial/article.ejs b/layout/_partial/article.ejs index 00bc4ded2..9638a1ddc 100755 --- a/layout/_partial/article.ejs +++ b/layout/_partial/article.ejs @@ -114,13 +114,13 @@
<%- post.prev.title || post.prev.seo_title || '' %>
+<%- post.prev.title || post.prev.seo_title || date(post.date, theme.article.body.meta_library.date.format) %>
<%- truncate(strip_html(page.prev.content), {length: 100}) %>
<% } %> <% if (post.next) { %> -<%- post.next.title || post.next.seo_title || '' %>
+<%- post.next.title || post.next.seo_title || date(post.date, theme.article.body.meta_library.date.format) %>
<%- truncate(strip_html(page.next.content), {length: 100}) %>
<% } %>