2020-11-30 21:50:40 +08:00
|
|
|
{% load static %}
|
2020-12-02 21:25:59 +08:00
|
|
|
{% load i18n %}
|
2019-07-29 17:38:33 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-cn">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2021-08-20 16:52:53 +08:00
|
|
|
<title>{% trans "页面未找到" %} - {% if site_name != None %}{{site_name}} {% else %}{% trans "觅思文档" %}{% endif %}</title>
|
2019-07-29 17:38:33 +08:00
|
|
|
<link href="{% static 'layui/css/layui.css' %}" rel="stylesheet">
|
2020-08-07 21:36:37 +08:00
|
|
|
<link href="{% static 'mrdoc/mrdoc.css' %}" rel="stylesheet">
|
2020-07-31 22:05:49 +08:00
|
|
|
<link rel="icon" href="{% static 'search/mrdoc_logo_300.png' %}" sizes="192x192" />
|
2019-07-29 17:38:33 +08:00
|
|
|
</head>
|
2020-01-01 21:24:29 +08:00
|
|
|
<body class="layui-container">
|
2019-12-01 20:44:16 +08:00
|
|
|
<!-- 页头 -->
|
|
|
|
{% include 'app_doc/head_base.html' %}
|
|
|
|
<!-- 页头结束 -->
|
2019-07-29 17:38:33 +08:00
|
|
|
<div class="layui-main">
|
2020-04-03 21:05:27 +08:00
|
|
|
<div style="text-align: center;">
|
2019-12-01 20:44:16 +08:00
|
|
|
<img src="{% static '404.png' %}">
|
2020-12-02 21:25:59 +08:00
|
|
|
<p><a href="{% url 'pro_list' %}" >{% trans "返回首页" %}</a></p>
|
2019-07-29 17:38:33 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
|
2021-06-06 06:50:50 +08:00
|
|
|
<script src="{% static 'layui/layui.js' %}"></script>
|
2019-07-29 17:38:33 +08:00
|
|
|
</body>
|
|
|
|
</html>
|