Skip to content

Commit

Permalink
🐛 暂时隐藏分类标签的计数
Browse files Browse the repository at this point in the history
  • Loading branch information
zkqiang committed Dec 4, 2019
1 parent d543bc8 commit a6e77b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layout/category.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var date_cursor = 'xxx'
%>

<div class="list-group">
<p class="h4"><%= __('postTotal', site.posts.length) %></p>
<!-- <p class="h4"><%= __('postTotal', page.posts.length) %></p>-->
<hr>
<% page.posts.each(function (post) { %>
<% if(date(post.date, "YYYY") != date_cursor) { %>
Expand Down
2 changes: 1 addition & 1 deletion layout/tag.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var date_cursor = 'xxx'
%>

<div class="list-group">
<p class="h4"><%= __('postTotal', site.posts.length) %></p>
<!-- <p class="h4"><%= __('postTotal', page.posts.length) %></p>-->
<hr>
<% page.posts.each(function (post) { %>
<% if(date(post.date, "YYYY") != date_cursor) { %>
Expand Down

0 comments on commit a6e77b0

Please sign in to comment.