24 lines
663 B
HTML
24 lines
663 B
HTML
<footer class="archive-footer">
|
|
<span class="footer-return">
|
|
<a href="#">{{ i18n "page_top" | humanize }}</a>
|
|
</span><br/>
|
|
{{ if .PrevInSection }}
|
|
<span class="footer-link">
|
|
<span class="label">{{ i18n "previous_article" | humanize }}:</span>
|
|
<a href="{{ .PrevInSection.RelPermalink }}">
|
|
{{ .PrevInSection.Title }}
|
|
</a>
|
|
{{ if .NextInSection }}
|
|
<span class="spacer"></span>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
{{ if .NextInSection }}
|
|
<span class="footer-link">
|
|
<span class="label">{{ i18n "next_article" | humanize }}:</span>
|
|
<a href="{{ .NextInSection.RelPermalink }}">
|
|
{{ .NextInSection.Title }}
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
</footer>
|