18 lines
644 B
HTML
18 lines
644 B
HTML
<div class="flex flex-wrap justify-between">
|
|
<div>
|
|
{{ with .NextInSection }}
|
|
<a href="{{ .RelPermalink }}" class="flex align-center">
|
|
<img src="{{ "svg/backward.svg" | relURL }}" class="book-icon" alt="Previous" title="{{ partial "docs/title" . }}" />
|
|
<span>{{ partial "docs/title" . }}</span>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
<div>
|
|
{{ with .PrevInSection }}
|
|
<a href="{{ .RelPermalink }}" class="flex align-center">
|
|
<span>{{ partial "docs/title" . }}</span>
|
|
<img src="{{ "svg/forward.svg" | relURL }}" class="book-icon" alt="Next" title="{{ partial "docs/title" . }}" />
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div> |