45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{{ $links := .Site.Params.links }}
|
|
<footer class="bg-dark py-5 row d-print-none">
|
|
<div class="container-fluid mx-sm-5">
|
|
<div class="row">
|
|
{{ template "footer-main-block" . }}
|
|
<div class="col col-sm-2 text-xs-center order-1">
|
|
{{ with $links }}
|
|
{{ with index . "user"}}
|
|
{{ template "footer-links-block" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col col-sm-2 text-right text-xs-center order-3">
|
|
{{ with $links }}
|
|
{{ with index . "developer"}}
|
|
{{ template "footer-links-block" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{{ define "footer-links-block" }}
|
|
<ul class="list-inline mb-0 footer-icons">
|
|
{{ 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" rel="noopener" href="{{ .url }}" aria-label="{{ .name }}">
|
|
<i class="{{ .icon }}"></i>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
{{ define "footer-main-block" }}
|
|
<div class="col-5 col-sm-7 text-center order-2 footer-main">
|
|
<p><span class="copyright-notice">© {{ now.Year}} {{ T "main_documentation_license" | safeHTML }}</span></p>
|
|
<p><span class="copyright-notice">© {{ now.Year }} {{ T "main_copyright_notice" | safeHTML }}</span></p>
|
|
<p><span class="certification-notice">{{ T "china_icp_license" }} 京ICP备17074266号-3</span></p>
|
|
{{ with .Site.Params.privacy_policy }}<p><span class="ml-1 privacy-policy"><a href="{{ . }}" target="_blank">{{ T "footer_privacy_policy" }}</a></span></p>{{ 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>
|
|
{{ end }}
|