11 lines
443 B
HTML
11 lines
443 B
HTML
<div class="{{ .direction }} wrapper">
|
|
<a href="{{ .page.RelPermalink }}">
|
|
{{ if eq .direction "previous" }}{{ partial "icon.html" "chevrons-left" }}{{ end }}
|
|
<div class="title-subtitle">
|
|
{{ i18n (printf "%sInSeries" .direction) }}
|
|
<div class="title">{{ partial "nameinseries.html" (dict "page" .page) }}</div>
|
|
</div>
|
|
{{ if eq .direction "next" }}{{ partial "icon.html" "chevrons-right" }}{{ end }}
|
|
</a>
|
|
</div>
|