13 lines
521 B
HTML
13 lines
521 B
HTML
<div class="{{ .direction }} wrapper">
|
|
<a href="{{ .page.RelPermalink }}">
|
|
{{ if eq .direction "previous" }}{{ partial "icon.html" "chevrons-left" }}{{ end }}
|
|
<div class="title-subtitle">
|
|
{{ title .direction }} in Series
|
|
{{ $scratch := newScratch -}}
|
|
{{- partial "nameinseries.html" (dict "page" .page "scratch" $scratch) -}}
|
|
<div class="title">{{ $scratch.Get "name" }}</div>
|
|
</div>
|
|
{{ if eq .direction "next" }}{{ partial "icon.html" "chevrons-right" }}{{ end }}
|
|
</a>
|
|
</div>
|