templates/flatpages/default.html @ 315df6ca542d

Pulled out the URLs into app-specific files.

It's so much cleaner!
author Steve Losh <steve@stevelosh.com>
date Fri, 13 Feb 2009 20:40:27 -0500
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 %}