neues theme: add blueprints.yaml

This commit is contained in:
teldra 2023-01-12 02:03:48 +01:00
parent f0bf505e25
commit b62a1d3f6e
1 changed files with 2 additions and 2 deletions

View File

@ -56,13 +56,13 @@
{% set currentPageIndex = allPages.index(currentPage) %}
<p class="prev-next text-center">
{% if currentPageIndex > 0 %}
{% if currentPageIndex < allPages|length-1 %}
<a class="btn" href="{{ allPages[currentPageIndex-1].url }}">
<i class="fa fa-angle-left"></i>
{{ 'THEME_QUARK.BLOG.ITEM.PREV_POST'|t }}
</a>
{% endif %}
{% if currentPageIndex < allPages|length-1 %}
{% if currentPageIndex > 0 %}
<a class="btn" href="{{ allPages[currentPageIndex+1].url }}">{{ 'THEME_QUARK.BLOG.ITEM.NEXT_POST'|t }}
<i class="fa fa-angle-right"></i>
</a>