templates/flatpages/default.html @ 9b36f94d6ffe

Got *all* the feeds working this time.
author Steve Losh <steve@stevelosh.com>
date Thu, 15 Jan 2009 20:10:16 -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 %}