40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
{{ $links := .Site.Params.links }}
|
|
<footer class="bg-dark py-5 row d-print-none">
|
|
<div class="bg-dark container-fluid trademark-bigger">
|
|
<div class="row">
|
|
<div class="col-6 col-sm-4 text-xs-center order-sm-2">
|
|
{{ with $links }}
|
|
{{ with index . "user"}}
|
|
{{ template "footer-links-block" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
|
|
{{ with $links }}
|
|
{{ with index . "developer"}}
|
|
{{ template "footer-links-block" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-12 col-sm-12 text-center py-4 order-sm-2">
|
|
{{ with .Site.Params.copyright }}<small class="text-white">© {{ now.Year}} {{ T "footer_vl_license" }}</small><br>{{ end }}
|
|
{{ with .Site.Params.copyright }}<small class="text-white">{{ T "footer_according_to_trademark" }}</small>{{ end }}
|
|
{{ if not .Site.Params.ui.footer_about_disable }}
|
|
{{ with .Site.GetPage "about" }}<p class="mt-2"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{{ define "footer-links-block" }}
|
|
<ul class="list-inline mb-0">
|
|
{{ range . }}
|
|
<li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="{{ .name }}" aria-label="{{ .name }}">
|
|
<a class="text-white" target="_blank" href="{{ .url }}">
|
|
<i class="{{ .icon }}"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|