{% extends "base.html" %} {% load markup %} {% block menu %} {% endblock %} {% block title %} {{ fatpage.title|title }} {% endblock %} {% block content %}
{# I know, this is ugly too. I may refactor this at some point #} {% ifequal fatpage.markup 'linebreaks' %} {{ fatpage.content|linebreaks }} {% endifequal %} {% ifequal fatpage.markup 'textile' %} {{ fatpage.content|textile }} {% endifequal %} {% ifequal fatpage.markup 'restructuredtext' %} {{ fatpage.content|restructuredtext }} {% endifequal %} {% ifequal fatpage.markup 'markdown' %} {{ fatpage.content|markdown }} {% endifequal %}
published on: {{ fatpage.pub_date|date:"r" }}
{% endblock %}