aboutsummaryrefslogtreecommitdiff
path: root/crumbs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-06-30 22:32:53 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-06-30 22:32:53 +0100
commitaa5c491c118770e45c7736c8c26b6e19cf779641 (patch)
treee30965acb808fdd937480bb74ff52f410eecb1db /crumbs
parent5a138853c454170a421d77c553a440b116a2fa99 (diff)
Swapping static HTML page with dynamic template page
Diffstat (limited to 'crumbs')
-rw-r--r--crumbs/templates/keys.html19
l---------crumbs/templates/keys.txt1
2 files changed, 20 insertions, 0 deletions
diff --git a/crumbs/templates/keys.html b/crumbs/templates/keys.html
new file mode 100644
index 0000000..e1b98ee
--- /dev/null
+++ b/crumbs/templates/keys.html
@@ -0,0 +1,19 @@
+{% extends "normal.html" %}
+
+{% block title %}{{ page.title }} {% endblock title %}
+
+{% block content %}
+<div class="card">
+ <div class="card-content">
+ {{ page.content }}
+
+ <p>Following is a signed key statement:</p>
+
+ <pre class="keys">
+ {% include "keys.txt" %}
+ </pre>
+ </div>
+</div>
+{% endblock %}
+
+
diff --git a/crumbs/templates/keys.txt b/crumbs/templates/keys.txt
new file mode 120000
index 0000000..d2f262e
--- /dev/null
+++ b/crumbs/templates/keys.txt
@@ -0,0 +1 @@
+../../content/keys.txt \ No newline at end of file