aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/footer.html
blob: c62e06a45feb6d1a6fcb27952776e4eb0f7943b6 (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; {{ copy_date }} {{ AUTHOR }}
            &middot; 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="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank"><img alt="Creative Commons License" style="border-width:0" src="{{ SITEURL }}/extras/by-sa.png" /></a> Content licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">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>