aboutsummaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: 1a75d8cb8130102bf47c1bb1bf74647718af2f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: #}