summaryrefslogtreecommitdiffstats
path: root/askbot/templates/static_page.html
blob: c537e199457032f50d5318f0a7ee5925b4fb70c1 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "two_column_body.html" %}
<!-- template static_page.html -->
{% block title %}{% spaceless %}{{title}}{% endspaceless %}{% endblock %}
{% block content %}
<div class="content">
    <h1 class="section-title">{{title}}</h1>
    {{content}}
</div>
{% endblock %}
<!-- end template static_page.html -->