mirror of
https://github.com/SqrtMinusOne/sqrtminusone.github.io.git
synced 2025-12-10 07:43:03 +03:00
17 lines
616 B
HTML
17 lines
616 B
HTML
<div id="footer" class="mb-5">
|
|
<hr>
|
|
<div class="container text-center">
|
|
{{ range $item := .Site.Params.socialIcons }}
|
|
<a href="{{ $item.url }}" class="{{ $item.icon }} fa-1x" title="{{ $item.title }}"></a>
|
|
{{ end }}
|
|
</div>
|
|
{{ with .Site.Params.footer }}
|
|
<div class="container text-center">
|
|
<a href="{{ .url | absURL }}" title="{{ .text }}"><small>{{ .text | safeHTML }}</small></a>
|
|
{{ if .license }}
|
|
<br>
|
|
<a href="{{ .licenseURL }}" title="{{ .license }}"><small>{{ .license }}</small></a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|