Added a simple generic template to display text on screen

This commit is contained in:
Roberto Rosario
2011-02-21 19:30:43 -04:00
parent f24410b9cb
commit 5209847ab5

View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<div class="content">
<h2 class="title">{{ title }}</h2>
<div class="inner">
<p>{{ content }}</p>
</div>
</div>
{% endblock %}