Files
edx-platform/lms/templates/static_templates/server-down.html
Nate Hardison 799d56d028 Theme static error pages
Reference the `PLATFORM_NAME` and `TECH_SUPPORT_EMAIL` settings in
the static error pages instead of hardcoded, edX-specific values.
2013-06-05 10:27:24 -07:00

7 lines
375 B
HTML

<%inherit file="../main.html" />
<section class="outside-app">
<h1>Currently the <em>${settings.PLATFORM_NAME}</em> servers are down</h1>
<p>Our staff is currently working to get the site back up as soon as possible. Please email us at <a href="mailto:${settings.TECH_SUPPORT_EMAIL}">${settings.TECH_SUPPORT_EMAIL}</a> to report any problems or downtime.</p>
</section>