aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/base.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-26 18:49:44 +0000
committerGravatar GitHub <[email protected]>2018-02-26 18:49:44 +0000
commit47db7991f11a1f4e803eaf5cd331f9d6bb2de244 (patch)
tree8e9ca8a41fdf5f2b6851ef088125e4fcc18f4496 /templates/main/base.html
parentbrings coverage to 90% (#24) (diff)
Help page #z62n (#25)
* Help page and misc improvements Committing so I can go home >:| * Changes for @lmn * Rephrase first paragraph * Rephrase questions so they aren't all about discord.py * Remove _every single header_ on the help page from the nav * Unit test the help route * Small styling fixes * Add page-specific classes to body element * Clean up section padding * IndexView -> HelpView * Remove unnecessary path in test
Diffstat (limited to 'templates/main/base.html')
-rw-r--r--templates/main/base.html16
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 %}