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.
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
{{/*
|
|
|
|
A modified version of the footer.html partial in Docsy.
|
|
|
|
*/}}
|
|
|
|
{{ $links := .Site.Params.links }}
|
|
<footer class="py-5 row d-print-none">
|
|
<div class="container-fluid mx-sm-5">
|
|
<div class="row">
|
|
<div class="col-12 text-center text-xs-center order-sm-3">
|
|
{{ with $links }}
|
|
{{ with index . "developer"}}
|
|
{{ template "footer-links-block" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center py-2 order-sm-3">
|
|
{{ with .Site.Params.copyright }}<small>© {{ now.Year}} {{ .}}</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-dark" target="_blank" rel="noopener noreferrer" href="{{ .url }}">
|
|
<i class="{{ .icon }}"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|