diff options
author | 2018-03-03 22:14:42 +0000 | |
---|---|---|
committer | 2018-03-03 22:14:42 +0000 | |
commit | df35fc377ea6fa309bc1c695849c434dd061983b (patch) | |
tree | ce4c678c6beb6c804784d852da218e1a44e98ef2 /templates/main/base.html | |
parent | Switch type from NotFound to HTTPException & add post support to 5XX and 4XX (diff) |
Mobile optimisation (#33)
* Fix squished logo & button
* Hide terminal on mobile
* A misc set of fixes
* Newline in window.css
* Add extra_head block to base template
* Move script/CSS loading to extra_head block in error view
* Move terminal JS into window.onload
* Replace `var` with `let` and enable strict mode in 500.js
* Stop typewriter when the terminal is closed
* Move terminal onclick assignment to 500.js
* Move error page <style> contents into window.css
* Tidy up error page HTML and remove unmatched tags
Diffstat (limited to 'templates/main/base.html')
-rw-r--r-- | templates/main/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index d231c073..7e58fa97 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -15,7 +15,8 @@ <meta property="og:title" content="Python Discord"> <meta property="og:description" content="We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others."> <meta content="/static/logos/logo_discord.png" property="og:image"> - + {% endblock %} + {% block extra_head %} {% endblock %} </head> |