aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/article_infos.html
blob: 7596f40a7c69f0f934eb6692c0483affa740bf39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<footer class="post-info">
<span class="label">Date</span>
<abbr class="published" title="{{ article.date.isoformat() }}">
	{{ article.locale_date }}
</abbr>
{% if article.author %}
<span class="label label-info">By</span>
<a class="btn btn-primary xsmall" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
{% endif %}
<span class="label label-success">Category</span>
<a class="btn btn-success xsmall" href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>. 

{% if PDF_PROCESSOR %}
<span class="label">
<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a>
</span>
{% endif %}
	
{% include 'taglist.html' %}
{% include 'translations.html' %}
</footer><!-- /.post-info -->