Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
ben
/
calefaction
réplica de
https://github.com/earwig/calefaction
Seguir
1
Destacar
1
Fork
0
Código
Lanzamientos
0
Actividad
Explorar el Código
Add custom 404.
master
Ben Kurtovic
hace 8 años
padre
8aece18afa
commit
52ffd35abc
Se han
modificado 2 ficheros
con
10 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+4
-0
app.py
+6
-0
templates/404.mako
+ 4
- 0
app.py
Ver fichero
@@ -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 fichero
@@ -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>
Escribir
Vista previa
Cargando…
Cancelar
Guardar