Serotonin Storm

source>templates>flatpages>default.html
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{% extends "blog/base_blog.html" %}
{% load blog tagging_tags inlines %}

{% block title %}{{ flatpage.title }} | {{ block.super }}{% endblock %}
{% block body_class %}{{ block.super }} flatpage{% endblock %}
{% block body_id %}flatpage_{{ flatpage.id }}{% endblock %}

{% block content %}
	<div class="post clearfix">
		<h2>{{ flatpage.title }}</h2>
	  	<div class="body">
	    {{ flatpage.content|safe }}
	  	</div>
	</div>
{% endblock %}