2020-10-18 08:05:41 +08:00
|
|
|
|
{% load static %}
|
2019-07-21 22:08:04 +08:00
|
|
|
|
<!DOCTYPE html>
|
2020-11-16 21:32:08 +08:00
|
|
|
|
<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">
|
|
|
|
|
{% block custom_element %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</head>
|
|
|
|
|
<body class="pear-container">
|
|
|
|
|
<div class="layui-card">
|
|
|
|
|
<div class="layui-card-body">
|
|
|
|
|
{% if debug %}
|
|
|
|
|
<blockquote class="layui-elem-quote">当前站点处于Debug调试模式</blockquote>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<blockquote id="check_update_div" class="layui-elem-quote" style="border-left: 5px solid #ff213b !important;display: none;">检测到新版本发布,请及时更新!下载地址:<a href="https://github.com/zmister2016/MrDoc" target="_blank">GitHub</a>、<a href="https://gitee.com/zmister/MrDoc" target="_blank">码云</a></blockquote>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
<script src="{% static 'PearAdminLayui/component/layui/layui.js' %}"></script>
|
|
|
|
|
<script src="{% static 'PearAdminLayui/component/pear/pear.js' %}"></script>
|
|
|
|
|
<script async>
|
|
|
|
|
layui.use(['jquery'], function() {
|
|
|
|
|
let $ = layui.jquery;
|
|
|
|
|
// 检测版本更新
|
|
|
|
|
checkUpdate = function(){
|
|
|
|
|
$.get("{% url 'check_update' %}",function(r){
|
|
|
|
|
console.log(r)
|
|
|
|
|
if(r.status){
|
|
|
|
|
var new_version = r.data.name.slice(1,5)
|
|
|
|
|
var current_version = '{{mrdoc_version}}'
|
|
|
|
|
// 如果存在新版本,顶部提示div
|
|
|
|
|
if(new_version > current_version){
|
|
|
|
|
$("#check_update_div").show()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var check_update = window.localStorage.getItem('check_update')
|
|
|
|
|
// console.log(check_update)
|
|
|
|
|
// 如果没有检测过,立即检测
|
|
|
|
|
if(check_update == null){
|
|
|
|
|
checkUpdate();
|
|
|
|
|
window.localStorage.setItem('check_update',new Date().getTime())
|
|
|
|
|
}else{
|
|
|
|
|
// 如果上次检测时间距今超过5天,再次检测
|
|
|
|
|
var time_diff = (new Date().getTime() - check_update)/86400000
|
|
|
|
|
// console.log(time_diff)
|
|
|
|
|
if(time_diff > 5){
|
|
|
|
|
checkUpdate()
|
|
|
|
|
window.localStorage.setItem('check_update',new Date().getTime())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
{% block custom_script %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|