templates/flatpages/default.html @ 4ee184bf2f39

Fixed the import bug.  Stupid cwd being on the python path by default...
author Steve Losh <steve@stevelosh.com>
date Fri, 23 Jan 2009 23:56:12 -0500
parents 5d5a567385bb
children 09b70d37fb65
{% extends "base.html" %}
{% load markup %}

{% block title %}{{ flatpage.title }}{% endblock %}

{% block header %}/ {{ flatpage.title|lower }}{% endblock %}

{% block content %}
	<div id="flatpage-content">
		{{ flatpage.content|markdown }}
	</div>
{% endblock %}