aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/page.html')
-rw-r--r--crumbs/templates/page.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/crumbs/templates/page.html b/crumbs/templates/page.html
new file mode 100644
index 0000000..2312a15
--- /dev/null
+++ b/crumbs/templates/page.html
@@ -0,0 +1,11 @@
+{% extends "normal.html" %}
+
+{% block title %}{{ page.title }} {% endblock title %}
+
+{% block content %}
+<div class="card">
+ <div class="card-content">
+ {{ page.content }}
+ </div>
+</div>
+{% endblock %}