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

27 lines
526 B
HTML

<hr>
<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 }}
{{- with .Site.Home.OutputFormats.Get "RSS" }}
<li>
<a href="{{ .RelPermalink }}">RSS</a>
</li>
{{- end }}
</ul>
</div>
{{- with .Site.Copyright }}
<div class="copyright">
{{ . }}
</div>
{{- end }}
</div>