You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
491 B
16 lines
491 B
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>页面没找到</title>
|
|
{% load staticfiles %}
|
|
<link type="text/css" rel="stylesheet" href="{% static css/common.css" %}>
|
|
<link type="text/css" rel="stylesheet" href="{% static css/error.css" %}>
|
|
</head>
|
|
<body>
|
|
<img src="{% static image/error_404.png" %}>
|
|
<div class="error_main"><a href='/' class="index">回到首页</a></div>
|
|
</body>
|
|
</html>
|