forked from mirror/MrDoc
26 lines
1004 B
HTML
26 lines
1004 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="{% static 'PearAdminLayui/component/pear/css/pear.css' %}" />
|
|
<link href="{% static 'mrdoc/mrdoc-admin.css' %}?version={{mrdoc_version}}" rel="stylesheet">
|
|
<link rel="icon" href="{% static 'search/mrdoc_logo_300.png' %}" sizes="192x192" />
|
|
{% block custom_element %}
|
|
{% endblock %}
|
|
</head>
|
|
<body class="pear-container">
|
|
{% block content %}
|
|
{% endblock %}
|
|
<script src="{% static 'PearAdminLayui/component/layui/layui.js' %}"></script>
|
|
<script src="{% static 'PearAdminLayui/component/pear/pear.js' %}"></script>
|
|
{% block custom_script %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|