12 lines
509 B
HTML
12 lines
509 B
HTML
<div class="meta wrapper">
|
|
<time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time>
|
|
<ul class="tags">
|
|
<li><a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></li>
|
|
{% if article.tags %}
|
|
{% for tag in article.tags %}
|
|
<li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
{% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">Download the .pdf</a></p>{% endif %}
|
|
</div> |