aboutsummaryrefslogtreecommitdiffstats
path: root/backdrop/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'backdrop/templates/page.html')
-rw-r--r--backdrop/templates/page.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/backdrop/templates/page.html b/backdrop/templates/page.html
new file mode 100644
index 0000000..b0f09ea
--- /dev/null
+++ b/backdrop/templates/page.html
@@ -0,0 +1,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 %}