aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/metadata.html
blob: c051c75e12b9957a078ad0455836e6eac1676e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="meta wrapper">
	<time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time>
	<ul class="tag clearfix">
		<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>