templates/flatpages/default.html @ 4503e2493b8d
Refactored Thoughts to use Djangos built-in pagination.
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 12 Feb 2009 13:56:47 -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 %}