hugo-theme-flat/layouts/partials/footer.html

24 lines
823 B
HTML
Raw Normal View History

2022-04-27 13:54:00 +00:00
<footer class="footer">
<div class="footer-row">
{{ if .IsHome }}
<a class="footer-item" href="/index.xml">The Site Feed</a>
{{ else }}
<a class="footer-item" href="/index.xml">The Site Feed</a>
{{ with .OutputFormats.Get "rss" }}
<a class="footer-item" href="{{ .Permalink }}">The Taxonomy Feed</a>
{{ end }}
{{ end }}
</div>
2022-04-27 13:54:00 +00:00
{{ range .Site.Params.footer_rows }}
<div class="footer-row">
{{ range .items }}
{{ with .pre }}
<span class="footer-item">{{ . | safeHTML }}</span>
{{ else }}
<a class="footer-item" href="{{ .url }}">{{ .name }}</a>
2022-04-27 13:54:00 +00:00
{{ end }}
{{ end }}
</div>
{{ end }}
</footer>