bullet on author page
[Ultimately_Untrue_Thought.git] / theme / templates / metadata.inc.html
1 <div class="metadata">
2   <time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time>
3   {% if article.author %}
4     <address class="vcard author">
5       by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
6     </address>
7   {% endif %}
8   in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
9   {% if article.tags %}<p class="tags">tagged {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last%}, {% endif %}{% endfor %}</p>{% endif %}
10   {% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">Download the .pdf</a></p>{% endif %}
11 </div>