kobel/layouts/partials/footer.html

24 lines
648 B
HTML
Raw Normal View History

2023-12-25 23:14:57 +01:00
{{ with .Site.Params.footer }}
<footer class="footer">
{{ if .social }}
<div class="social">
{{ range .social }}
2024-01-06 20:44:35 +01:00
{{ partial "components/icon.html" . }}
2023-12-25 23:14:57 +01:00
{{ end }}
</div>
{{ end }}
{{ if .links }}
<ul class="links">
{{- range .links }}
<li class="link"><a href="{{ .url }}">{{ .text }}</a></li>
{{- end }}
</ul>
{{ end }}
{{ if .copyright }}
<p class="copyright">
© {{ dateFormat "2006" now }} {{ .copyright }}</a>
</p>
{{ end }}
2023-12-27 00:23:25 +01:00
</footer>
{{ end }}
<a class="totop hide" id="totop" href="#"><i class="icon-angle-up"></i></a>