diff options
Diffstat (limited to 'pelican-bootstrap3/templates/includes/footer.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/footer.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/footer.html b/pelican-bootstrap3/templates/includes/footer.html new file mode 100644 index 0000000..7e2cf39 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/footer.html @@ -0,0 +1,16 @@ +<footer> + <div class="container"> + <hr> + <p class="pull-right"><i class="icon-arrow-up"></i> <a href="#">Back to top</a></p> + + {% if articles %} + {% set copy_date = articles[0].date.strftime('%Y') %} + {% else %} + {% set copy_date = '' %} + {% endif %} + + <p>© {{ copy_date }} {{ AUTHOR }} · Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, + <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, + <a href="http://getbootstrap.com" target="_blank">Bootstrap</a></p> + </div> +</footer>
\ No newline at end of file |