website/layouts/partials/footer.html
Rafael Mardojai CM 5ba633d209
Add footer menu
2023-12-17 11:13:31 -05:00

20 lines
No EOL
690 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<footer class="section section-page footer">
<div class="container">
<div>
<nav class="menu">
<ul>
{{- range site.Menus.footer }}
<li>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{- end }}
</ul>
</nav>
<p class="copy">© 2020{{ dateFormat "2006" now }} The Dialect Authors</p>
</div>
<a href="https://circle.gnome.org" class="circle">
<img src="https://circle.gnome.org/assets/button/circle-button-fullcolor.svg" alt="GNOME Circle">
</a>
</div>
</footer>