このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
ben
/
calefaction
ミラー元
https://github.com/earwig/calefaction
ウォッチ
1
スター
1
フォーク
0
コード
リリース
0
アクティビティ
ソースを参照
Add custom 404.
master
Ben Kurtovic
8年前
親
8aece18afa
コミット
52ffd35abc
2個のファイルの変更
、
10行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+4
-0
app.py
+6
-0
templates/404.mako
+ 4
- 0
app.py
ファイルの表示
@@ -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
ファイルの表示
@@ -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>
書き込み
プレビュー
読み込み中…
キャンセル
保存