mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 12:20:12 +01:00
19 lines
669 B
Text
19 lines
669 B
Text
<div id="post-nav">
|
|
{% if page.next.url %}
|
|
<div id="previous-post">
|
|
<a alt="{{ page.next.title }}" href="{{ page.next.url | relative_url | default: 'none' }}">
|
|
<p>{{ site.data.language.str_previous_post | default: "Previous post" }}</p>
|
|
{{ page.next.title }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.previous.url %}
|
|
<div id="next-post">
|
|
<a alt="{{ page.previous.title }}" href="{{ page.previous.url | relative_url | default: 'none' }}">
|
|
<p>{{ site.data.language.str_next_post | default: "Next post"}}</p>
|
|
{{ page.previous.title }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|