使用 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 选项
显示统计
下载 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>
撰写
预览
正在加载...
取消
保存