Remove: paginator 组件,优化 home-post 组件
This commit is contained in:
parent
44d28e6ab3
commit
30a881eb4f
|
@ -21,9 +21,22 @@
|
||||||
</li>
|
</li>
|
||||||
<% }) %>
|
<% }) %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<div class="paginator">
|
||||||
|
<% if (page.prev) { %>
|
||||||
|
<a class="prev btn"
|
||||||
|
href="<%- url_for(page.prev == 1 ? '':'/page/' + page.prev) %>"
|
||||||
|
role="navigation"
|
||||||
|
><%- __('prev') %></a>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<% if (page.next) { %>
|
||||||
|
<a class="next btn"
|
||||||
|
href="<%- url_for('/page/' + page.next) %>"
|
||||||
|
role="navigation"
|
||||||
|
><%- __('next') %></a>
|
||||||
|
<% } %>
|
||||||
|
</div>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
<!-- 分页器 -->
|
|
||||||
<%- partial('paginator') %>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
|
@ -1,9 +0,0 @@
|
||||||
<!-- 分页器 -->
|
|
||||||
<!-- https://hexo.io/zh-cn/docs/helpers#paginator -->
|
|
||||||
<div class="paginator">
|
|
||||||
<%- paginator({
|
|
||||||
prev_text: __('prev'),
|
|
||||||
next_text: __('next'),
|
|
||||||
escape: false
|
|
||||||
}) %>
|
|
||||||
</div>
|
|
|
@ -55,6 +55,24 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.paginator {
|
||||||
|
|
||||||
|
padding-bottom 40px
|
||||||
|
|
||||||
|
.page-number {
|
||||||
|
display none !important
|
||||||
|
}
|
||||||
|
|
||||||
|
a.prev {
|
||||||
|
float left
|
||||||
|
}
|
||||||
|
|
||||||
|
a.next {
|
||||||
|
float right
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
/* 分页器 */
|
|
||||||
.paginator {
|
|
||||||
|
|
||||||
padding-bottom 40px
|
|
||||||
|
|
||||||
.page-number {
|
|
||||||
display none !important
|
|
||||||
}
|
|
||||||
|
|
||||||
a.prev {
|
|
||||||
float left
|
|
||||||
}
|
|
||||||
|
|
||||||
a.next {
|
|
||||||
float right
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -13,6 +13,5 @@
|
||||||
@import "common/category-post.styl"
|
@import "common/category-post.styl"
|
||||||
@import "common/tag-post.styl"
|
@import "common/tag-post.styl"
|
||||||
@import "common/site-info.styl"
|
@import "common/site-info.styl"
|
||||||
@import "common/paginator.styl"
|
|
||||||
@import "highlight"
|
@import "highlight"
|
||||||
@import "variables.styl"
|
@import "variables.styl"
|
||||||
|
|
Loading…
Reference in New Issue