Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
monero-project
monero-site
Commits
4688d887
Verified
Commit
4688d887
authored
Jan 29, 2020
by
erciccione
Browse files
Fix broken 'next' and 'prev' in 'all posts'
parent
bb514879
Changes
1
Hide whitespace changes
Inline
Side-by-side
blog/index.html
View file @
4688d887
...
...
@@ -33,7 +33,7 @@ title: titles.allposts
{% if paginator.total_pages > 1 %}
<div
class=
"text-center page-numbers"
><p>
{% if paginator.previous_page %}
<a
href=
"{{ paginator.previous_page_path |
prepend: site.baseurl |
replace: '//', '/' }}"
>
«
Prev
</a>
<a
href=
"{{ paginator.previous_page_path | replace: '//', '/' }}"
>
«
Prev
</a>
{% else %}
<span>
«
Prev
</span>
{% endif %}
...
...
@@ -49,7 +49,7 @@ title: titles.allposts
{% endfor %}
{% if paginator.next_page %}
<a
href=
"{{ paginator.next_page_path |
prepend: site.baseurl |
replace: '//', '/' }}"
>
Next
»
</a>
<a
href=
"{{ paginator.next_page_path | replace: '//', '/' }}"
>
Next
»
</a>
{% else %}
<span>
Next
»
</span>
{% endif %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment