aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/page.html
blob: b0f09ea53c775de0cffb92e83a05401a6dc0fe9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block title %}{{ page.title|striptags }}{%endblock%}

{% block content %}
<div class="row">
    <div class="small-12 columns article">
        <h2>{{ page.title }}</h2>
        <section>
            {{ page.content }}    
        </section>
    </div>
</div>
{% endblock content %}