jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/partials/footer.html

17 lines
472 B
HTML

<footer class="footer">
<div class="container">
{{ with .Site.Menus.footer -}}
<div class="links">
{{ range $key, $value := . }}
<a href="{{ $value.URL }}">{{ $value.Name }}</a>
{{- end }}
</div>
{{- end }}
<div class="toggle" id="theme-toggle">
<a onclick="toggleTheme();">{{ T "toggle_theme" }}</a>
</div>
<div class="copyright">
&copy; {{ now.Format "2006" }} {{ .Site.Params.copyright | default .Site.Title }}
</div>
</div>
</footer>