Il sito funziona meglio con JavaScript.
Home
Aiuto
Accedi
ben
/
calefaction
mirror da
https://github.com/earwig/calefaction
Segui
1
Vota
1
Forka
0
Codice
Rilasci
0
Attività
Sfoglia il codice sorgente
Add custom 404.
master
Ben Kurtovic
8 anni fa
parent
8aece18afa
commit
52ffd35abc
2 ha cambiato i file
con
10 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+4
-0
app.py
+6
-0
templates/404.mako
+ 4
- 0
app.py
Vedi File
@@ -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
Vedi File
@@ -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>
Scrivi
Anteprima
Caricamento…
Annulla
Salva