This repository has been archived on 2024-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-theme-nocolor/layouts/partials/footer.html

26 lines
521 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
<div class="footer">
<div class="nav nav-bottom">
<ul>
{{- range .Site.Menus.footer }}
<li>
{{- if .URL }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{- else }}
{{ .Name }}
{{- end }}
</li>
{{- end }}
2020-12-28 20:12:36 +01:00
{{- with .Site.Home.OutputFormats.Get "RSS" }}
2019-11-20 19:56:22 +01:00
<li>
2020-12-28 20:12:36 +01:00
<a href="{{ .RelPermalink }}">RSS</a>
2019-11-20 19:56:22 +01:00
</li>
{{- end }}
</ul>
</div>
{{- with .Site.Copyright }}
<div class="copyright">
2020-12-28 20:12:36 +01:00
{{ . }}
2019-11-20 19:56:22 +01:00
</div>
{{- end }}
</div>