27 lines
701 B
Text
27 lines
701 B
Text
|
{#def curr, prev, next #}
|
||
|
|
||
|
<nav {{ attrs.render(class="cd-prevnext", data_component="PrevNext") }}>
|
||
|
{% if prev.url -%}
|
||
|
<a href="{{ prev.url }}" class="prev">
|
||
|
<i>←</i>
|
||
|
<div>
|
||
|
<div class="section">
|
||
|
{{ prev.section or "Previous" if prev.section != curr.section else "Previous" }}
|
||
|
</div>
|
||
|
<div class="title">{{ prev.title }}</div>
|
||
|
</div>
|
||
|
</a>
|
||
|
{%- endif %}
|
||
|
{% if next.url -%}
|
||
|
<a href="{{ next.url }}" class="next">
|
||
|
<div>
|
||
|
<div class="section">
|
||
|
{{ next.section or "Next" if next.section != curr.section else "Next" }}
|
||
|
</div>
|
||
|
<div class="title">{{ next.title }}</div>
|
||
|
</div>
|
||
|
<i>→</i>
|
||
|
</a>
|
||
|
{%- endif %}
|
||
|
</nav>
|