summaryrefslogtreecommitdiffstats
path: root/templates/500.html
diff options
context:
space:
mode:
authorMike Chen <chagel@gmail.com>2009-07-05 10:23:30 +0800
committerMike Chen <chagel@gmail.com>2009-07-05 10:23:30 +0800
commit4347c2947834fe7f2edf2b457b2d513454fc6a03 (patch)
tree93e9d22d6fb8a6c882e3915a8511a3ac542a1e67 /templates/500.html
downloadaskbot-4347c2947834fe7f2edf2b457b2d513454fc6a03.tar.gz
askbot-4347c2947834fe7f2edf2b457b2d513454fc6a03.tar.bz2
askbot-4347c2947834fe7f2edf2b457b2d513454fc6a03.zip
initiliaze git rep
Diffstat (limited to 'templates/500.html')
-rw-r--r--templates/500.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/500.html b/templates/500.html
new file mode 100644
index 00000000..2e89783a
--- /dev/null
+++ b/templates/500.html
@@ -0,0 +1,33 @@
+{% extends "base_content.html" %}
+{% block title %}{% spaceless %}500 Error{% endspaceless %}{% endblock %}
+{% block forejs %}
+ <script type="text/javascript">
+ $().ready(function(){
+ $("#linkPrevious").bind("click", back=function(){history.go(-1);})
+ });
+
+ </script>
+{% endblock %}
+{% block content %}
+<div id="main-bar" class="headNormal">
+ 500 Server Error
+</div>
+<div id="main-body" class="">
+ <div style="padding:5px 0px 10px 0;line-height:25px">
+ <h3>对不起,系统发生了错误,不能响应您的请求!</h3>
+ <br>
+ 系统已经记录错误日志,我们会尽快解决此问题。<br>
+ 如果这个问题长时间没有被修复,请<span class="darkred"><a title="cnprog.uservoice.com" href="http://cnprog.uservoice.com/" >搜索查看当前问题的状态,或者报告新的bug</a></span>。感谢您的支持!
+
+ <ul>
+ <li><a href="#" id="linkPrevious">返回前页</li>
+ <li><a href="/questions">查看最新问题</a></li>
+ <li><a href="/tags/">查看标签列表</a></li>
+ </u>
+ </div>
+
+</div>
+{% endblock %}
+
+
+