blob: 7a9ec67e799bbcf952101aeef38b1d60f2bb386c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<footer>
<div class="container{% if BOOTSTRAP_FLUID %}-fluid{% endif %}">
<hr>
<div class="row">
{% if articles %}
{% set copy_date = articles[0].date.strftime('%Y') %}
{% else %}
{% set copy_date = '' %}
{% endif %}
<div class="col-lg-10 text-muted">© {{ copy_date }} {{ AUTHOR }}
· Powered by <a href="https://github.com/getpelican/pelican-themes/tree/master/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>,
<a href="http://docs.getpelican.com/" target="_blank">Pelican</a>,
<a href="https://getbootstrap.com" target="_blank">Bootstrap</a>
<!-- license footer -->
<p class="text-muted"><small><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="{{ SITEURL }}/extras/by-sa.png" /></a> Content licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>, except where indicated otherwise.
</small></p>
</div>
<div class="col-lg-2"><p class="pull-right"><i class="glyphicon glyphicon-menu-up"></i> <a href="#">Back to top</a><br><a href="./impressum.html">Impressum/Datenschutzerklärung</a></p></div>
</div>
</div>
</footer>
|