404 page added
This commit is contained in:
parent
d6c600628b
commit
c1d8408cc6
8
game.py
8
game.py
|
@ -60,6 +60,12 @@ def log_the_request(response):
|
||||||
|
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
@app.errorhandler(404)
|
||||||
|
def page_not_found(e):
|
||||||
|
lang = config.get('i18n', 'lang')
|
||||||
|
title = config.get('i18n', 'title')
|
||||||
|
return render_template('404.html', title=title, lang=lang), 404
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
def hello():
|
def hello():
|
||||||
lang = config.get('i18n', 'lang')
|
lang = config.get('i18n', 'lang')
|
||||||
|
@ -103,6 +109,8 @@ def getContent():
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
app.register_error_handler(404, page_not_found)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
from waitress import serve
|
from waitress import serve
|
||||||
bind = config.get('main', 'bind')
|
bind = config.get('main', 'bind')
|
||||||
|
|
|
@ -156,6 +156,11 @@ input[type="radio"] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.empty {
|
||||||
|
width: 45%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width:1600px) {
|
@media only screen and (max-width:1600px) {
|
||||||
#content {
|
#content {
|
||||||
min-width: 75%;
|
min-width: 75%;
|
||||||
|
@ -269,6 +274,7 @@ input[type="radio"] {
|
||||||
|
|
||||||
.toggle {
|
.toggle {
|
||||||
width: 10%;
|
width: 10%;
|
||||||
|
height: 64px;
|
||||||
float: left;
|
float: left;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block main %}
|
||||||
|
<div class="ab">
|
||||||
|
<div class="a">404 - Page not found.</div>
|
||||||
|
</div>
|
||||||
|
<div id="footer">
|
||||||
|
<div class="empty"> </div>
|
||||||
|
{% include 'toggle.html' %}
|
||||||
|
<div class="empty"> </div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
|
@ -32,8 +32,8 @@
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<div id="header">{{ title }}</div>
|
<div id="header">{{ title }}</div>
|
||||||
<hr>
|
<hr>
|
||||||
{% block main %}
|
{%- block main %}
|
||||||
{% endblock %}
|
{%- endblock %}
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
initToggle();
|
initToggle();
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<br>
|
<br>
|
||||||
<a href="mailto:{{ mailto }}">Einreichen!</a>
|
<a href="mailto:{{ mailto }}">Einreichen!</a>
|
||||||
</div>
|
</div>
|
||||||
{% include 'toggle.html' %}
|
{% include 'toggle.html' %}
|
||||||
<form action="/" method="get">
|
<form action="/" method="get">
|
||||||
<input type="hidden" name="t" value="{{ epoch }}">
|
<input type="hidden" name="t" value="{{ epoch }}">
|
||||||
<button id="next" type="submit">{{ more }}</button>
|
<button id="next" type="submit">{{ more }}</button>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div class="spacer"> </div>
|
<div class="spacer"> </div>
|
||||||
<div class="toggle">
|
<div class="toggle">
|
||||||
{%- if theme == "light" %}
|
{%- if theme == "light" %}
|
||||||
<input type="checkbox" id="toggle_checkbox">
|
<input type="checkbox" id="toggle_checkbox">
|
||||||
{%- else %}
|
{%- else %}
|
||||||
|
@ -12,4 +12,4 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="moon"></div>
|
<div id="moon"></div>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue