You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
564 B
HTML
19 lines
564 B
HTML
{{ "<!-- Footer -->" | safeHTML}}
|
|
<footer id="footer">
|
|
<ul class="icons">
|
|
{{ range .Site.Params.links }}
|
|
{{ $pack := or .icon_pack "fa" }}
|
|
<li>
|
|
<a href="{{ .link | safeURL }}" target="_blank" aria-label="{{ .service }}"><i class="icon {{ $pack }} {{ .icon }}"><span class="label">{{ .service }}</span></i></a>
|
|
</li>
|
|
{{ end }} {{/* range */}}
|
|
</ul>
|
|
<ul class="copyright">
|
|
{{- range .Site.Params.Footer.copyright -}}
|
|
<li>{{ . | markdownify }}</li>
|
|
{{- end -}}
|
|
</ul>
|
|
</footer>
|
|
|
|
</div>
|