diff --git a/cms/templates/404.html b/cms/templates/404.html new file mode 100644 index 0000000000..abc7d9f30f --- /dev/null +++ b/cms/templates/404.html @@ -0,0 +1,15 @@ +<%inherit file="base.html" /> +<%! from django.core.urlresolvers import reverse %> +<%block name="title">Page Not Found + +<%block name="content"> + +
+
+ +

Page not found

+

The page that you were looking for was not found. Go back to the homepage or let us know about any pages that may have been moved at technical@edx.org.

+
+
+ + \ No newline at end of file diff --git a/cms/templates/500.html b/cms/templates/500.html new file mode 100644 index 0000000000..f69ff35a49 --- /dev/null +++ b/cms/templates/500.html @@ -0,0 +1,14 @@ +<%inherit file="base.html" /> +<%! from django.core.urlresolvers import reverse %> +<%block name="title">Server Error + +<%block name="content"> + +
+
+

Currently the edX servers are down

+

Our staff is currently working to get the site back up as soon as possible. Please email us at technical@edx.org to report any problems or downtime.

+
+
+ + \ No newline at end of file