templates/flatpages/default.html @ dbf5fe560ec3
Add the snip functions and use them for the admin.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 22 Aug 2009 10:17:28 -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 %}