summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-10-17 15:57:43 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-10-17 15:57:43 +0100
commit28095311586da50d936114f252a3e2f8b7dded54 (patch)
tree12e58b0bb1f7f6cc90283d8eb15310bd5a810885 /baserock_openid_provider/templates
parent9a4f736da5534b4e8187381ff5bcfb7ecad66501 (diff)
downloadinfrastructure-28095311586da50d936114f252a3e2f8b7dded54.tar.gz
Add base template
This is required for the OpenID provider to display something.
Diffstat (limited to 'baserock_openid_provider/templates')
-rw-r--r--baserock_openid_provider/templates/base.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/baserock_openid_provider/templates/base.html b/baserock_openid_provider/templates/base.html
new file mode 100644
index 00000000..f491adf6
--- /dev/null
+++ b/baserock_openid_provider/templates/base.html
@@ -0,0 +1,14 @@
+<html>
+<head>
+<title>
+ {% block title %}
+ {% endblock %}
+</title>
+ {% block extrahead %}
+ {% endblock %}
+</head>
+<body>
+ {% block content %}
+ {% endblock %}
+</body>
+</html>