aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2015-01-27 15:22:07 -0600
committerAndy Doan <andy.doan@linaro.org>2015-02-05 14:42:22 -0600
commit196b2812202b3fbfbbf2055fa68d5e705bf2cce7 (patch)
tree24bb18531b7ced03f875559155fbd25c3fae135a /templates
parentc18c7b822a21e8553568bd0b5e35e1bee560b981 (diff)
allow customization of page styling
This is done in a way that our ansible deployment logic can override this for sites that require it. Change-Id: I1c44b7b51ae687fc6aa010451d9575ea1761dd29
Diffstat (limited to 'templates')
-rw-r--r--templates/404.html2
-rw-r--r--templates/500.html2
-rw-r--r--templates/dir_template.html2
-rw-r--r--templates/group_auth_failure.html2
-rw-r--r--templates/openid_forbidden_template.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/404.html b/templates/404.html
index 11e82d6..4a03259 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -1,4 +1,4 @@
-{% extends "header.html" %}
+{% extends base_page %}
{% block content %}
Page not found: {{request_path}}
diff --git a/templates/500.html b/templates/500.html
index 425b5d4..6094529 100644
--- a/templates/500.html
+++ b/templates/500.html
@@ -1,4 +1,4 @@
-{% extends "header.html" %}
+{% extends base_page %}
{% block content %}
Server error.
diff --git a/templates/dir_template.html b/templates/dir_template.html
index b2717b4..efa16d3 100644
--- a/templates/dir_template.html
+++ b/templates/dir_template.html
@@ -1,4 +1,4 @@
-{% extends "header.html" %}
+{% extends base_page %}
{% block content %}
{{ header_content|safe }}
diff --git a/templates/group_auth_failure.html b/templates/group_auth_failure.html
index e078b4d..a577e02 100644
--- a/templates/group_auth_failure.html
+++ b/templates/group_auth_failure.html
@@ -1,4 +1,4 @@
-{% extends "header.html" %}
+{% extends base_page %}
{% block content %}
<h1>Group Authentication Error</h1>
diff --git a/templates/openid_forbidden_template.html b/templates/openid_forbidden_template.html
index d54d272..47027ab 100644
--- a/templates/openid_forbidden_template.html
+++ b/templates/openid_forbidden_template.html
@@ -1,4 +1,4 @@
-{% extends "header.html" %}
+{% extends base_page %}
{% block content %}
<h1>Forbidden</h1>