43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<footer>
|
|
<div class="container">
|
|
<div class="row align-items-center border-bottom py-5">
|
|
<div class="col-lg-4">
|
|
<ul class="list-inline footer-menu text-center text-lg-start">
|
|
{{ range .Site.Menus.footer }}
|
|
<li class="list-inline-item"><a href="{{ .URL | absLangURL }}">{{ .Name }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-4 text-center mb-4 mb-lg-0">
|
|
<a class="navbar-brand" href="{{ .Site.BaseURL | relLangURL }}/">
|
|
{{ if .Site.Params.logo }}
|
|
{{ partial "logo.html" }}
|
|
{{ else }}
|
|
{{ .Site.Title }}
|
|
{{ end }}</a>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<ul class="list-inline social-icons text-lg-end text-center">
|
|
{{ range .Site.Params.social }}
|
|
<li class="list-inline-item"><a href="{{ .link | safeURL }}"><i class="{{ .icon }}"></i></a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="py-4 text-center">
|
|
<small class="text-light">
|
|
{{ site.Params.copyright | markdownify }}
|
|
{{ if site.Params.theme_copyright }}
|
|
| Theme by
|
|
<a
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://gethugothemes.com/"
|
|
>GetHugoThemes</a
|
|
>
|
|
{{ end }}
|
|
</small>
|
|
|
|
</div>
|
|
</div>
|
|
</footer> |