blag/theme-fred/templates/taglist.html

12 lines
293 B
HTML
Raw Normal View History

2023-03-24 12:41:18 -04:00
{% 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 %}