{% extends "base.html" %} {% block title %} {{ article.title }} - {{ super() }} {% endblock title %} {% block content %}
{{ article.content }}
{% if article.date %}

Published

{% set day = article.date.strftime('%d')|int %} {% endif %} {% if article.modified %}

Last Updated

{{ article.modified }} {% endif %} {% if article.category %}

Category

{{ article.category }} {% endif %} {% if article.tags %}

Tags

{% endif %}
{% endblock content %}