mirror of
https://github.com/kogakure/website-11ty-hamburg.stefanimhoff.de.git
synced 2026-02-03 12:15:28 +00:00
24 lines
510 B
Plaintext
24 lines
510 B
Plaintext
{% if previousPost %}
|
|
<a
|
|
aria-label="{{ previousPost.data.title }}"
|
|
class="pagination pagination-start"
|
|
href="{{ previousPost.url }}"
|
|
rel="prev"
|
|
title="{{ previousPost.data.title }}"
|
|
>
|
|
{% include "pagination-left-arrow.njk" %}
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if nextPost %}
|
|
<a
|
|
aria-label="{{ nextPost.data.title }}"
|
|
class="pagination pagination-end"
|
|
href="{{ nextPost.url }}"
|
|
rel="next"
|
|
title="{{ nextPost.data.title }}"
|
|
>
|
|
{% include "pagination-right-arrow.njk" %}
|
|
</a>
|
|
{% endif %}
|