metadata.inc.html 643 B

123456789
  1. <div class="metadata">
  2. <time datetime="{{ article.date.isoformat() }}" pubdate>{{ article.locale_date }}</time>
  3. {%- if article.author %}
  4. by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
  5. {% endif -%}
  6. in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
  7. {% 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 %}
  8. {% if PDF_PROCESSOR %}<p><a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">Download the .pdf</a></p>{% endif %}
  9. </div>