22 lines
720 B
HTML
22 lines
720 B
HTML
<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 -->
|