diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/main/base.html | 2 | ||||
-rw-r--r-- | templates/main/index.html | 12 | ||||
-rw-r--r-- | templates/main/ws_test.html | 2 | ||||
-rw-r--r-- | templates/staff/staff.html | 2 |
4 files changed, 10 insertions, 8 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 5dd0c02c..9d692342 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -12,7 +12,7 @@ {% endblock %} </head> <body> -{% include "navigation.html" %} +{% include "main/navigation.html" %} {% block content %}{% endblock %} </body> </html> diff --git a/templates/main/index.html b/templates/main/index.html index 418347d2..6a447567 100644 --- a/templates/main/index.html +++ b/templates/main/index.html @@ -1,9 +1,11 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}Home{% endblock %} {% block content %} - <div class="uk-container uk-section"> - <h1 class="uk-title uk-text-center"> - Coming soon :tm: - </h1> +<div class="uk-container uk-section"> + <div class="uk-alert-danger" uk-alert> + <p> + + </p> </div> +</div> {% endblock %}
\ No newline at end of file diff --git a/templates/main/ws_test.html b/templates/main/ws_test.html index 6ef1bb68..a492fb89 100644 --- a/templates/main/ws_test.html +++ b/templates/main/ws_test.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}WS Test{% endblock %} {% block content %} <div class="uk-container uk-section"> diff --git a/templates/staff/staff.html b/templates/staff/staff.html index 3017f65c..39f75f81 100644 --- a/templates/staff/staff.html +++ b/templates/staff/staff.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block title %}Home{% endblock %} {% block content %} <div class="uk-container uk-section"> |