diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-14 23:44:29 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-14 23:44:29 -0500 |
commit | 7a765dc664d20f966e4e52abac1f5372045e166c (patch) | |
tree | 641f4de8cc11fd9f3234558f957b7bb6b8faf45b /youtube/templates/error.html | |
parent | 9d0be82e7425641a58a551fefce26385dee2f9d3 (diff) | |
download | yt-local-7a765dc664d20f966e4e52abac1f5372045e166c.tar.lz yt-local-7a765dc664d20f966e4e52abac1f5372045e166c.tar.xz yt-local-7a765dc664d20f966e4e52abac1f5372045e166c.zip |
Change general design theme
Diffstat (limited to 'youtube/templates/error.html')
-rw-r--r-- | youtube/templates/error.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube/templates/error.html b/youtube/templates/error.html index c3f58b0..e02ecd9 100644 --- a/youtube/templates/error.html +++ b/youtube/templates/error.html @@ -4,9 +4,13 @@ {% extends "base.html" %} {% endif %} +{% block style %} + <link href="/youtube.com/static/home.css" rel="stylesheet"> +{% endblock style %} + {% block main %} {% if traceback %} - <div id="error-box"> + <div class="code-error" id="error-box"> <h1>500 Uncaught exception:</h1> <div class="code-box"><code>{{ traceback }}</code></div> <p>Please report this issue at <a href="https://github.com/user234683/youtube-local/issues" target="_blank">https://github.com/user234683/youtube-local/issues</a></p> @@ -16,4 +20,3 @@ <div id="error-message">{{ error_message }}</div> {% endif %} {% endblock %} - |