aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/footer.html
blob: 7e2cf3998895ac605600033125b6b2ff2a1da675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; {{ copy_date }} {{ AUTHOR }} &middot; 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>