aboutsummaryrefslogtreecommitdiffstats
path: root/templates/400.html
blob: 69bba66faa6505300ead1a68a85e67e3cf429515 (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 %}

{# 400 bad request template #}

{% block title %}
400无效的请求 | 2014 SKA Summer School
{% endblock %}

{% block content %}
  <div class="container">
    <h2>400 Bad Request</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: #}