You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
1.3 KiB

{%- if not is_post() -%}
<nav class="pagination">
{%- if page.prev -%}
<a class="prev" href="{{ url_for(page.prev_link) }}">
<i class="iconfont icon-left"></i>
<span class="prev-text">{{ __('posts.prev') }}</span>
</a>
{%- endif -%}
{%- if page.next -%}
<a class="next" href="{{ url_for(page.next_link) }}">
<span class="next-text">{{ __('posts.next') }}</span>
<i class="iconfont icon-right"></i>
</a>
{%- endif -%}
</nav>
{%- else -%}
<nav class="post-nav">
{%- if page.prev.path -%}
<a class="prev" href="{{ url_for(page.prev.path) }}">
<i class="iconfont icon-left"></i>
<span class="prev-text nav-default"><span class=".zh">{{ page.prev.title }}</span><span class=".en">{{ page.prev.titleEN }}</span></span>
<span class="prev-text nav-mobile">{{ __('posts.prev_post') }}</span>
</a>
{%- endif -%}
{%- if page.next.path -%}
<a class="next" href="{{ url_for(page.next.path) }}">
<span class="next-text nav-default"><span class=".zh">{{ page.next.title }}</span><span class=".en">{{ page.next.titleEN }}</span></span>
<span class="prev-text nav-mobile">{{ __('posts.next_post') }}</span>
<i class="iconfont icon-right"></i>
</a>
{%- endif -%}
</nav>
{%- endif -%}