vmems-website/themes/vmems-theme/layouts/partials/footer.html

50 lines
1,017 B
HTML

<footer class=footer>
<div class="row top">
<ul class="col left list-style-none">
{{ range .Site.Menus.footer_left.ByWeight }}
<li>
{{ if .URL }}
<a href="{{ .URL }}">
{{ end }}
{{ .Name }}
{{ if .URL }}
</a>
{{ end }}
</li>
{{ end }}
</ul>
<ul class="col middle list-style-none">
{{ range .Site.Menus.footer_middle.ByWeight }}
<li>
{{ if .URL }}
<a href="{{ .URL }}">
{{ end }}
{{ .Name }}
{{ if .URL }}
</a>
{{ end }}
</li>
{{ end }}
</ul>
<ul class="col right list-style-none">
{{ range .Site.Menus.footer_right.ByWeight }}
<li>
{{ if .URL }}
<a href="{{ .URL }}">
{{ end }}
{{ .Name }}
{{ if .URL }}
</a>
{{ end }}
</li>
{{ end }}
</ul>
</div>
<div class="row bottom">
<div class="col middle copyright">
<p>{{ .Site.Params.Copyright | safeHTML }}</p>
<p>Ce site utilise un thème développé par <a href="//gzod01.fr">GZod01</a>.</p>
</div>
</div>
</footer>