2022-08-02 18:46:05 +08:00
|
|
|
<!--
|
|
|
|
* @Author: TaoLer <alipey_tao@qq.com>
|
|
|
|
* @Date: 2021-12-06 16:04:50
|
2022-08-02 21:13:36 +08:00
|
|
|
* @LastEditTime: 2022-06-28 10:02:16
|
2022-08-02 18:46:05 +08:00
|
|
|
* @LastEditors: TaoLer
|
|
|
|
* @Description: 搜索引擎SEO优化设置
|
|
|
|
* @FilePath: \TaoLer\app\admin\view\public\base.html
|
|
|
|
* Copyright (c) 2020~2022 http://www.aieok.com All rights reserved.
|
|
|
|
-->
|
2020-01-01 13:17:19 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2020-01-02 16:23:03 +08:00
|
|
|
<title>{block name="title"}TaoLer后台管理模板系统{/block}</title>
|
2020-01-01 13:17:19 +08:00
|
|
|
<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.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
2020-01-16 17:36:51 +08:00
|
|
|
<link rel="stylesheet" href="/static/layui/css/layui.css" media="all">
|
2020-01-01 13:17:19 +08:00
|
|
|
<link rel="stylesheet" href="/static/admin/style/admin.css" media="all">
|
|
|
|
{block name="css"}{/block}
|
|
|
|
</head>
|
2022-08-02 21:13:36 +08:00
|
|
|
<body {if($Request.url == url('index/index'))}class="layui-layout-body"{/if}>
|
2020-01-01 13:17:19 +08:00
|
|
|
{block name="body"}内容{/block}
|
2020-01-16 17:36:51 +08:00
|
|
|
<script src="/static/layui/layui.js"></script>
|
2020-04-25 16:48:59 +08:00
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
var AdminLogin = "{:url('Login/index')}",
|
|
|
|
AdminLogout = "{:url('Admin/logout')}",
|
|
|
|
adminClearCache = "{:url('Admin/clearCache')}";
|
2021-07-22 10:39:09 +08:00
|
|
|
var sysCy = "{$clevel}";
|
2020-04-25 16:48:59 +08:00
|
|
|
//var c = "{:config('app.domain_bind.www')}";
|
|
|
|
//console.log(c);
|
|
|
|
</script>
|
2020-01-01 13:17:19 +08:00
|
|
|
{block name="js"}js文件{/block}
|
|
|
|
</body>
|
|
|
|
</html>
|