blob: 67fedd76c47a35e906786b04ba9b6f080abdddde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
{# 404 page not found template #}
{% block pagetitle %}404: 页面未找到{% 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: #}
|