本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
ben
/
calefaction
镜像来自
https://github.com/earwig/calefaction
關注
1
收藏
1
複製
0
程式碼
版本發佈
0
活動
瀏覽代碼
Add custom 404.
master
Ben Kurtovic
8 年之前
父節點
8aece18afa
當前提交
52ffd35abc
共有
2 個檔案被更改
,包括
10 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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>
Write
Preview
Loading…
取消
儲存