diff --git a/layout/_partial/article-meta-info.ejs b/layout/_partial/article-meta-info.ejs
index 7dac560..128e828 100644
--- a/layout/_partial/article-meta-info.ejs
+++ b/layout/_partial/article-meta-info.ejs
@@ -1,14 +1,14 @@
- <%= date(articleObject.date, is_post() ? 'YYYY-MM-DD HH:mm:ss' : 'YYYY-MM-DD') %>
+ <%= date(articleObject.date, is_post() ? 'YYYY-MM-DD HH:mm:ss' : 'YYYY-MM-DD') %>
<% if (articleObject.categories.length) { %>
-
+
@@ -16,11 +16,11 @@
<% } %>
<% if (articleObject.tags.length) { %>
-
+
@@ -39,17 +39,17 @@
%>
<% if(is_post() && theme.post_wordcount.enable && theme.post_wordcount.wordcount && temp_wordcount_count){ %>
- <%= temp_wordcount_count %> <%- __('wordcount') %>
+ <%= temp_wordcount_count %> <%- __('wordcount') %>
<% } %>
<% if(is_post() && theme.post_wordcount.enable && theme.post_wordcount.min2read && temp_min2read_count){ %>
- <%= temp_min2read_count %> <%- __('min2read') %>
+ <%= temp_min2read_count %> <%- __('min2read') %>
<% } %>
<% if (is_post() && theme.website_count.busuanzi_count.enable && theme.website_count.busuanzi_count.page_pv) { %>
-
+
<% } %>
diff --git a/layout/_partial/footer.ejs b/layout/_partial/footer.ejs
index 2c02c3d..6bc7dff 100644
--- a/layout/_partial/footer.ejs
+++ b/layout/_partial/footer.ejs
@@ -3,27 +3,27 @@
<% if (theme.website_count.busuanzi_count.enable === true) { %>
<% if (theme.website_count.busuanzi_count.site_uv) { %>
- <%- __('site_uv') %>
+ <%- __('site_uv') %>
<% } %>
<% if (theme.website_count.busuanzi_count.site_pv) { %>
- <%- __('site_pv') %>
+ <%- __('site_pv') %>
<% } %>
<% } %>
diff --git a/layout/_partial/home-article-meta-info.ejs b/layout/_partial/home-article-meta-info.ejs
index 0d32fa1..2105e2e 100644
--- a/layout/_partial/home-article-meta-info.ejs
+++ b/layout/_partial/home-article-meta-info.ejs
@@ -2,13 +2,13 @@
<%= date(post.date, 'YYYY-MM-DD') %>
<% if (post.categories.length && theme.home_article.category.enable === true) { %>
-
+
<% post.categories.forEach((category, i) => {
if (theme.home_article.category.limit === 0 || i + 1 <= theme.home_article.category.limit) { %>
-
<%= i === 0 ? '' : '> ' %>
- <%= category.name %>
+ <%= category.name %>
<% } %>
<% }); %>
@@ -17,13 +17,13 @@
<% } %>
<% if (post.tags.length && theme.home_article.tag.enable === true) { %>
-
+
<% post.tags.forEach((tag, i) => {
if (theme.home_article.tag.limit === 0 || i + 1 <= theme.home_article.tag.limit) { %>
-
<%= i === 0 ? '' : '| ' %>
- <%= tag.name %>
+ <%= tag.name %>
<% }}); %>