Some minor fixes

This commit is contained in:
Mimi 2023-07-26 14:43:51 +08:00
parent 8b8632f137
commit 10010c13ea
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ labels:
issue: issue:
body: This will not be worked on but we appreciate your contribution. body: This will not be worked on but we appreciate your contribution.
action: close action: close
- name: Configuration - name: Configurations
labeled: labeled:
pr: pr:
body: | body: |

View File

@ -135,14 +135,14 @@
<div class="post-nav-item"> <div class="post-nav-item">
{%- if prev %} {%- if prev %}
<a href="{{ url_for(prev.path) }}" rel="prev" title="{{ prev.title }}"> <a href="{{ url_for(prev.path) }}" rel="prev" title="{{ prev.title }}">
<i class="fa fa-chevron-left"></i> {{ prev.title }} <i class="fa fa-angle-left"></i> {{ prev.title }}
</a> </a>
{%- endif %} {%- endif %}
</div> </div>
<div class="post-nav-item"> <div class="post-nav-item">
{%- if next %} {%- if next %}
<a href="{{ url_for(next.path) }}" rel="next" title="{{ next.title }}"> <a href="{{ url_for(next.path) }}" rel="next" title="{{ next.title }}">
{{ next.title }} <i class="fa fa-chevron-right"></i> {{ next.title }} <i class="fa fa-angle-right"></i>
</a> </a>
{%- endif %} {%- endif %}
</div> </div>