aboutsummaryrefslogtreecommitdiffstats
path: root/SOB/templates/article_infos_bottom.html
blob: 3ebb64a09f5f2ff66e9454543ceb705d179e66a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>

	{% if article.tags %}
		<br/>
		Tagged: 
		{% for tag in article.tags %}
			<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }} </a>
			{% endfor %}
	{% endif %}

	{% if PDF_PROCESSOR %}
		<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a></p>
	{% endif %}

	{% import 'translations.html' as translations with context %}
	{{ translations.translations_for(article) }}