13 lines
416 B
HTML
13 lines
416 B
HTML
|
<footer>
|
||
|
<div class="copyright">
|
||
|
{{ config.extra.footer_copyright | trim | markdown | safe }}
|
||
|
</div>
|
||
|
{% if config.extra.footer_credits %}
|
||
|
<div class="credits">
|
||
|
powered by
|
||
|
<a href="https://www.getzola.org" target="_blank" rel='noreferrer noopener'>zola</a>
|
||
|
and
|
||
|
<a href="https://github.com/isunjn/serene" target="_blank" rel='noreferrer noopener'>serene</a>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</footer>
|