diff options
Diffstat (limited to 'templates/404.html')
-rw-r--r-- | templates/404.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..1a75d8c --- /dev/null +++ b/templates/404.html @@ -0,0 +1,20 @@ +{% extends 'base.html' %} +{% load staticfiles %} +{% load url from future %} + +{# 404 page not found template #} + +{% block title %} +404页面未找到 | 2014 SKA Summer School +{% endblock %} + +{% block content %} + <div class="container"> + <h2>404 Page not Found</h2> + <p class="lead">Oops, 您想要的页面未找到……</p> + <br> + <p>如有问题,请与我们联系:<a href="mailto:skaschool2014@163.com"><code>skaschool2014@163.com</code></a></p> + </div> +{% endblock %} + +{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #} |