29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
{{ $lang := .Site.Language.Lang }}
|
|
|
|
<footer>
|
|
<br>
|
|
<div class="columns-container">
|
|
<div class="col3 social-list grid padding-container-point3">
|
|
{{ range .Site.Data.menu.social }}
|
|
<a role="button" alt="{{ .name }}" title="{{ .name }}" href="{{ replace .URL "<lang>" $lang }}">
|
|
<i class="icon-{{ .icon }}" alt="{{ .icon }} social icon"></i>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
<div class="text-center col3">
|
|
<br>
|
|
{{ .Site.Copyright }}<br>
|
|
<p><a href="{{ .Site.Params.websiteSource }}">{{ i18n "websiteSource" }}</a></p>
|
|
{{ if .GitInfo }}
|
|
<p>Built from <a href="{{ .Site.Params.websiteSource }}/commit/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a></p>
|
|
{{ end }}
|
|
<a href="https://ad5001.eu/terms-of-use">Terms of use</a><br>
|
|
|
|
</div>
|
|
<div class="col3 text-right padding-container-1">
|
|
<p>{{ i18n "usingTheme" }} <a href="https://git.ad5001.eu/Ad5001/omegamma">Omegamma</a></p>
|
|
<p>{{ i18n "poweredBy" }} <a href="https://gohugo.io">Hugo</a></p>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
</footer>
|