16 lines
645 B
HTML
16 lines
645 B
HTML
{# footer.html #}
|
|
<footer class="t-foot">
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}
|
|
<a href="https://creativecommons.org/publicdomain/mark/1.0/">
|
|
<span class="cc0">©</span>
|
|
</a>
|
|
<a href="{{ path }}">{{ copyright }}</a>
|
|
{% endtrans %}
|
|
<div style="float: right; text-align: right;">
|
|
This blog uses a customized <a href="https://typlog.com/">typlog</a><a href="https://github.com/typlog/sphinx-typlog-theme"> sphinx theme</a>.
|
|
<br />
|
|
<a class='atom' href="{{ blog_baseurl }}/blog/atom.xml">
|
|
Atom feed <img src="/_static/rss-icon.svg" />
|
|
</a>
|
|
</div>
|
|
</footer>
|