aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/taglist.html
blob: a4b3446b0dfb5ec9f15f417c8690652845342b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% if article.tags %}
    <p>tags: 
        {% for tag in article.tags %}
                <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
        {% endfor %}
    </p>
{% endif %}
{% if PDF_PROCESSOR %}
    <p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">
        get the pdf
    </a></p>
{% endif %}