{% extends "base.html" %} {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} {% block content %}

Posted on {{ article.locale_date }}

{{ article.title }}
{{ article.content }}

Category: {{ article.category }}

{% if article.tags %}

Tags: {% for tag in article.tags %} {{ tag }}{% if not loop.last %},{% endif %} {% endfor %}

{% endif %}
{% endblock %}