blog/themes/medusa/templates/article.html
2019-04-15 15:38:15 +02:00

18 lines
450 B
HTML

{% extends 'base.html' %}
{% block title %} - {{ article.title }}{% endblock %}
{% block content %}
<h1>{{ article.title }}</h1>
<p class="post-meta">
Posted on {{ article.locale_date }}
{% if article.tags %}
&#8226; Tagged with
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
{% endfor %}
{% endif %}
</p>
{{ article.content }}
{% endblock %}