TaoLer/app/admin/view/public/admin_base.html
2024-04-01 10:24:38 +08:00

23 lines
733 B
HTML

<!--
* @Author: TaoLer <alipay_tao@qq.com>
* @Date: 2021-12-06 16:04:50
* @LastEditTime: 2022-06-28 10:00:54
* @LastEditors: TaoLer
* @Description: 后台头部结构
* Copyright (c) 2020~2023 https://www.aieok.com All rights reserved.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{block name="title"}TaoLerCMS后台管理系统{/block}</title>
<link rel="stylesheet" href="/static/component/pear/css/pear.css" />
{block name="head"}内容{/block}
</head>
<body class="pear-container">
{block name="body"}内容{/block}
<script src="/static/component/layui/layui.js"></script>
<script src="/static/component/pear/pear.js"></script>
{block name="js"}js文件{/block}
</body>
</html>