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

{# 400 bad request template #}

{% block pagetitle %}400: 无效的请求{% 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: #}