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
635 B
HTML

<hr>
<footer class="footer">
<nav class="nav nav-bottom"{{- with .Site.Params.aria.menu_bottom }} aria-label="{{ . }}"{{- end }}>
<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>
</nav>
{{- with .Site.Copyright }}
<section class="copyright" aria-label="Copyright">
{{ . }}
</section>
{{- end }}
</footer>