mirror of
https://github.com/michivonah/website-v3.git
synced 2025-12-22 21:36:28 +01:00
23 lines
720 B
HTML
23 lines
720 B
HTML
<div class="footer">
|
|
<div class="footer-part">
|
|
<p>© {{ dateFormat "2006" now }}</p>
|
|
<a href="#" alt='{{ T "legal" }}' title='{{ T "legal" }}'>{{ T "legal" }}</a>
|
|
<div class="sm-icons">
|
|
{{ range .Site.Data.socialmedia }}
|
|
{{ if .footer }}
|
|
<a href="{{ .link }}" alt="{{ .name }}" title="{{ .name }}"><i class="{{ .icon }}"></i></a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
<div class="footer-part">
|
|
<select>
|
|
{{ range $.Site.Home.AllTranslations }}
|
|
<option>{{ .Language.LanguageName }}</option>
|
|
{{ end }}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|