支持文章置顶

i18n
xaoxuu 6 years ago
parent c608ea62c0
commit de38d1d7c3
  1. 4
      _config.yml
  2. 9
      layout/_partial/archive.ejs
  3. 6
      layout/_partial/meta.ejs

@ -52,6 +52,10 @@ music:
links: true # layout: links 的页面是否显示
post: true # layout: post 的页面是否显示
top_post:
icon: fas fa-award
text: 置顶
# 推荐文章
recommended_posts:
autoDisplay: false # 自动在文章底部显示推荐文章,如果你使用Material-X主题,这里要设置为false。

@ -14,9 +14,18 @@
<section class="post-list">
<% page.posts.each(function(post){ %>
<% if (post.top == true) { %>
<div class='post-wrapper'>
<%- partial('post', {post: post}) %>
</div>
<% } %>
<% }) %>
<% page.posts.each(function(post){ %>
<% if (!post.top || post.top != true) { %>
<div class='post-wrapper'>
<%- partial('post', {post: post}) %>
</div>
<% } %>
<% }) %>
</section>

@ -53,5 +53,11 @@
<% } %>
<% } %>
<% if(theme.top_post && isPostList && post.top == true){ %>
<div class="metatag top">
<i class="<%- theme.top_post.icon %> fa-fw" aria-hidden="true"></i>&nbsp;<%- theme.top_post.text %>
</div>
<% } %>
</div>
</section>

Loading…
Cancel
Save