templates/flatpages/default.html @ 0b0276b6360b
Cleaned up the silly hardcoding of the BASE_DIR.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 08 Apr 2009 18:54:18 -0400 (2009-04-08) |
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 %}