Files
house-of-vanity.github.io/templates/partials/footer.html
2023-11-04 13:11:50 +02:00

22 lines
685 B
HTML

<footer>
<div style="display:flex">
{% for social in config.extra.social %}
<a class="soc" href={{ social.url }} title={{ social.name }}>
<i data-feather={{ social.icon }}></i>
</a>
{% endfor %}
</div>
<div class="footer-info">ver. {{ config.extra.version }} |
{{ now() | date(format="%Y") }} © {{ config.extra.copyright }} |Powered by <a href="https://github.com/getzola/zola">Zola</a> and <a
href="https://github.com/XXXMrG/archie-zola">Archie-Zola Theme</a>
</div>
<div class="footer-info">Git tag {{ config.extra.tag }} </div>
</footer>
{% if config.extra.social %}
<script>
feather.replace();
</script>
{% endif %}