blog/theme/templates/article_info.html

10 lines
490 B
HTML

<div class="meta">
<p>
Posted on <time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time> in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> by {% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}. {% if article.tags %}{% for tag in article.tags %}
<span class="tag">{{ tag | escape }}</span>
{% endfor %}{% endif %}
</p>
</div>