mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 04:20:10 +01:00
20 lines
669 B
Text
20 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>
|