Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
ben
/
calefaction
espelhamento de
https://github.com/earwig/calefaction
Observar
1
Favorito
1
Fork
0
Código
Versões
0
Atividade
Ver código fonte
Add custom 404.
master
Ben Kurtovic
8 anos atrás
pai
8aece18afa
commit
52ffd35abc
2 arquivos alterados
com
10 adições
e
0 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+4
-0
app.py
+6
-0
templates/404.mako
+ 4
- 0
app.py
Ver arquivo
@@ -84,5 +84,9 @@ def set_style(style):
abort(404)
return "", 204
@app.errorhandler(404)
def page_not_found(err):
return render_template("404.mako"), 404
if __name__ == "__main__":
app.run(debug=True, port=8080)
+ 6
- 0
templates/404.mako
Ver arquivo
@@ -0,0 +1,6 @@
<%inherit file="_base.mako"/>
<%block name="title">
404 – ${g.config.get("corp.name") | h}
</%block>
<h1>Error 404</h1>
<p>The page you asked for couldn't be found.</p>
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar