diff options
author | 2018-02-21 09:38:47 +0000 | |
---|---|---|
committer | 2018-02-21 09:38:47 +0000 | |
commit | a78c69ed6843550eb990d769f061711e9fde0d4f (patch) | |
tree | 821a170731799d9f57fec133e905c4dee1efba63 /templates/main | |
parent | Jinja is weird (diff) |
Add warning about pre-release-ness to base template
Diffstat (limited to '')
-rw-r--r-- | templates/main/base.html | 10 | ||||
-rw-r--r-- | templates/main/index.html | 7 |
2 files changed, 10 insertions, 7 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 9d692342..66bf7e5f 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -13,6 +13,16 @@ </head> <body> {% include "main/navigation.html" %} + +<div class="uk-container uk-section"> + <div class="uk-alert-danger" uk-alert> + <p> + Please note: this site is under construction. What you see now may be vastly different + from the final project state. Feel free to chat to us on Discord if you're curious! + </p> + </div> +</div> + {% block content %}{% endblock %} </body> </html> diff --git a/templates/main/index.html b/templates/main/index.html index 6a447567..48ca8f12 100644 --- a/templates/main/index.html +++ b/templates/main/index.html @@ -1,11 +1,4 @@ {% extends "main/base.html" %} {% block title %}Home{% endblock %} {% block content %} -<div class="uk-container uk-section"> - <div class="uk-alert-danger" uk-alert> - <p> - - </p> - </div> -</div> {% endblock %}
\ No newline at end of file |