This commit is contained in:
amehime
2020-07-04 20:27:47 +08:00
parent d66de944bb
commit 5759e9cfda
4 changed files with 10 additions and 6 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
.DS_Store
Thumbs.db
node_modules/
yarn.lock
_config.yml

View File

@@ -158,8 +158,7 @@ reward:
# Third Party Plugins & Services Settings
# ---------------------------------------------------------------
# Pangu Support
# For more information: https://github.com/vinta/pangu.js
# Dependencies: https://github.com/theme-next/hexo-symbols-count-time
pangu: false
# Algolia Search

View File

@@ -27,8 +27,8 @@
<ul class="quick">
<li class="prev pjax">
{%- if page and page.next %}
<a href="{{ url_for(page.next.path) }}" rel="prev" title="{{__('post.prev')}}">
{%- if page and page.prev %}
<a href="{{ url_for(page.prev_link) }}" rel="prev" title="{{__('post.prev')}}">
<i class="ic i-chevron-left"></i>
</a>
{%- endif %}
@@ -36,8 +36,8 @@
<li class="up"><i class="ic i-arrow-up"></i></li>
<li class="down"><i class="ic i-arrow-down"></i></li>
<li class="next pjax">
{%- if page and page.prev %}
<a href="{{ url_for(page.prev.path) }}" rel="next" title="{{__('post.next')}}">
{%- if page and page.next %}
<a href="{{ url_for(page.next_link) }}" rel="next" title="{{__('post.next')}}">
<i class="ic i-chevron-right"></i>
</a>
{%- endif %}

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 KiB