aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/article_info.html
blob: 6610aa2ac95bc690e203b5288b2de4d965f65446 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<footer class="post-info">
    <span class="label label-default">Date</span>
    <span class="published">
        <i class="icon-calendar"></i>{{ article.locale_date }}
    </span>
    {# Uncomment if you want the author shown #}
    {#{% if article.author %}#}
    {#<span class="label">By</span>#}
    {#<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>{{ article.author }}</a>#}
    {#{% endif %}#}

    {# Uncomment if you want to show Categories#}
    {#<span class="label label-default">Category</span>#}
    {#<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>#}

    {% if PDF_PROCESSOR %}
        <span class="label label-default">
            <a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a>
        </span>
    {% endif %}

    {% include 'includes/taglist.html' %}
    {% include 'includes/translations.html' %}
</footer><!-- /.post-info -->