diff options
Diffstat (limited to 'templates/main/base.html')
-rw-r--r-- | templates/main/base.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 96a25554..3da4715e 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -12,15 +12,17 @@ <link rel="stylesheet" href="/static/style.css" /> {% endblock %} </head> -<body> +<body class="page-{{ current_page }}"> {% include "main/navigation.html" %} {% if current_page != "index" %} -<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 class="uk-container uk-section" style="padding-top: 10px; padding-bottom: 10px;"> + <div class="uk-container uk-container-small"> + <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> </div> {% endif %} |