diff options
author | David Robillard <d@drobilla.net> | 2014-11-21 01:12:26 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-11-21 01:12:26 -0500 |
commit | d38c4094a1aef8be93218adeefe66b20308d96e3 (patch) | |
tree | 7f1d451dd1edade63567504c67b61bbc24d7c683 /themes/lv2/templates/includes/footer.html | |
download | lv2site-d38c4094a1aef8be93218adeefe66b20308d96e3.tar.xz |
Initial website Markdown conversion.
Diffstat (limited to 'themes/lv2/templates/includes/footer.html')
-rw-r--r-- | themes/lv2/templates/includes/footer.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/lv2/templates/includes/footer.html b/themes/lv2/templates/includes/footer.html new file mode 100644 index 0000000..8026a5d --- /dev/null +++ b/themes/lv2/templates/includes/footer.html @@ -0,0 +1,23 @@ +<footer> + <div class="container"> + <hr> + <div class="row"> + {% if articles %} + {% set copy_date = articles[0].date.strftime('%Y') %} + {% else %} + {% set copy_date = '' %} + {% endif %} + <div class="col-xs-10">© {{ copy_date }} {{ AUTHOR }} + · Powered by + <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, + theme based on + <a href="https://github.com/DandyDev/pelican-bootstrap3">pelican-bootstrap3</a> + {%- if CC_LICENSE or CC_LICENSE_DERIVATIVES or CC_LICENSE_COMMERCIAL %} + {% from 'includes/cc-license.html' import cc_license_mark %} + <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> + {% endif %} + </div> + <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> + </div> + </div> +</footer> |