diff --git a/datacenterlight/static/datacenterlight/css/downtime-page.css b/datacenterlight/static/datacenterlight/css/downtime-page.css
new file mode 100644
index 00000000..9bbfa5bc
--- /dev/null
+++ b/datacenterlight/static/datacenterlight/css/downtime-page.css
@@ -0,0 +1,52 @@
+body {
+ font-family: Lato, sans-serif;
+ font-weight: 300;
+ font-size: 20px;
+ line-height: 1;
+}
+
+h1 {
+ font-weight: 300;
+ font-size: 52px;
+ text-align: center;
+}
+
+nav {
+ padding: 15px;
+}
+
+.downtime-container {
+ max-width: 1200px;
+ margin: auto;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+}
+
+.downtime-msg {
+ text-align: center;
+ font-size: 30px;
+}
+
+.downtime-contact {
+ max-width: 300px;
+ margin: auto;
+ color: #4a90e2;
+}
+
+h2 {
+ font-weight: 300;
+ font-size: 24px;
+ text-align: center;
+}
+p {
+ margin: 15px auto
+}
+.xl_p {
+ margin: 15px auto;
+}
+
+a {
+ color: #4a90e2;
+ text-decoration: none;
+}
\ No newline at end of file
diff --git a/datacenterlight/templates/datacenterlight/downtime.html b/datacenterlight/templates/datacenterlight/downtime.html
new file mode 100644
index 00000000..dd5954ca
--- /dev/null
+++ b/datacenterlight/templates/datacenterlight/downtime.html
@@ -0,0 +1,63 @@
+{% load staticfiles bootstrap3%}
+{% load i18n %}
+
+
+
+
+
+
+
+
+
+
+
+ ungleich
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% include "google_analytics.html" %}
+
+
+
+
+
+
+
+
+
{% trans "You caught us while working!" %}
+
+
{% trans "We're doing scheduled maintainence from" %}
+
17:00 21.08.2017 {% trans "to" %} 23:00 21.08.2017 CEST.
+
+
{% trans "If you need immediate assistance, please contact us at" %}
+
+
+
+
+
diff --git a/datacenterlight/urls.py b/datacenterlight/urls.py
index a3aed7a6..a0942695 100644
--- a/datacenterlight/urls.py
+++ b/datacenterlight/urls.py
@@ -1,17 +1,22 @@
from django.conf.urls import url
+from django.views.generic import TemplateView
from .views import IndexView, BetaProgramView, LandingProgramView, BetaAccessView, PricingView, SuccessView, \
- PaymentOrderView, OrderConfirmationView, WhyDataCenterLightView
+ PaymentOrderView, OrderConfirmationView, WhyDataCenterLightView
urlpatterns = [
url(r'^$', IndexView.as_view(), name='index'),
- url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(), name='whydatacenterlight'),
+ url(r'^whydatacenterlight/?$', WhyDataCenterLightView.as_view(),
+ name='whydatacenterlight'),
url(r'^beta-program/?$', BetaProgramView.as_view(), name='beta'),
url(r'^landing/?$', LandingProgramView.as_view(), name='landing'),
url(r'^pricing/?$', PricingView.as_view(), name='pricing'),
url(r'^payment/?$', PaymentOrderView.as_view(), name='payment'),
- url(r'^order-confirmation/?$', OrderConfirmationView.as_view(), name='order_confirmation'),
+ url(r'^order-confirmation/?$', OrderConfirmationView.as_view(),
+ name='order_confirmation'),
url(r'^order-success/?$', SuccessView.as_view(), name='order_success'),
url(r'^beta_access?$', BetaAccessView.as_view(), name='beta_access'),
+
+ url(r'test/?$', TemplateView.as_view(template_name='datacenterlight/downtime.html')),
]