blog.hatebit.org/theme/templates/partials/_footer.html

16 lines
517 B
HTML
Raw Normal View History

<footer>
<div class="container flex-col md:flex-row">
<div class="cc text-center md:text-left">
This work is licensed under
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target="_blank">CC BY-NC-SA 4.0</a>
</div>
<div class="social mt-6 md:mt-0">
{% for (name, url) in SOCIAL %}
<a href="{{ url }}" title="{{ name }}" target="_blank">
<img src="{{ SITEURL }}/theme/images/{{ name }}.svg" />
</a>
{% endfor %}
</div>
</div>
</footer>