templates/flatpages/default.html @ 67bcfb62a139
Add the TOC extension to project and entry bodies.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 26 Jul 2009 17:44:09 -0400 |
parents |
09b70d37fb65 |
children |
(none) |
{% extends "base.html" %}
{% load markup %}
{% load typogrify %}
{% block title %}{{ flatpage.title }}{% endblock %}
{% block header %}/ {{ flatpage.title|lower }}{% endblock %}
{% block content %}
<div id="flatpage-content">
{{ flatpage.content|markdown|typogrify }}
</div>
{% endblock %}