footer.html 1.3 KB

123456789101112131415161718192021222324
  1. <footer>
  2. <div class="container{% if BOOTSTRAP_FLUID %}-fluid{% endif %}">
  3. <div class="row">
  4. {% if articles %}
  5. {% set copy_date = articles[0].date.strftime('%Y') %}
  6. {% else %}
  7. {% set copy_date = '' %}
  8. {% endif %}
  9. <!-- <div class="col-xs-10">{{ AUTHOR }}
  10. &middot; Made with <a href="https://github.com/getpelican/pelican-themes/tree/master/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>,
  11. <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>,
  12. <a href="http://getbootstrap.com" target="_blank">Bootstrap</a>
  13. {%- if CC_LICENSE or CC_LICENSE_DERIVATIVES or CC_LICENSE_COMMERCIAL %}
  14. {% from 'includes/cc-license.html' import cc_license_mark %}
  15. <p><small>{{ cc_license_mark(cc_name=CC_LICENSE,derivatives=CC_LICENSE_DERIVATIVES,commercial=CC_LICENSE_COMMERCIAL,attr_markup=CC_ATTR_MARKUP,attr_props={'title':SITENAME,'name':article.author if article else AUTHOR,'url':SITEURL}) }}</small></p>
  16. {% elif CUSTOM_LICENSE %}
  17. <p><small>{{ CUSTOM_LICENSE }}</small></p>
  18. {% endif %}
  19. </div>
  20. <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> -->
  21. </div>
  22. </div>
  23. </footer>