mirror of
https://github.com/agresdominik/website.git
synced 2026-04-21 18:05:53 +00:00
12 lines
427 B
HTML
12 lines
427 B
HTML
<footer class="bottombar">
|
|
<div class="bottombar-content">
|
|
<nav class="footer-links">
|
|
{{ $last := index (last 1 .Site.Params.info) 0 }}
|
|
{{ range .Site.Params.info }}
|
|
<a href="{{ .url }}">{{ .name }}</a> {{ if ne . $last }} ·{{ end }}
|
|
{{ end }}
|
|
</nav>
|
|
<div class="copyright">© {{ now.Format "2006" }} {{ .Site.Params.name | default "Your Name" }}</div>
|
|
</div>
|
|
</footer>
|