{% extends "base.html" %} {% block title %}{{ article.title|striptags }} | Tanner's Site{% endblock %} {% block head %} {{ super() }} {% if article.date %} {% endif %} {% if article.summary %} {% endif %} {% if article.category %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.image %} {% endif %} {% endblock %} {% block content %}

{{ article.title }}

{{ article.summary }}

{% if article.nofilter %}
{% endif %} {{ article.content }} {% if article.nofilter %}
{% endif %}
{% endblock %}