2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 02:07:18 +08:00
Files
panel/resources/views/index.blade.php
2022-11-30 22:15:32 +08:00

61 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
////////////////////////////////////////////////////////////////////
// _ooOoo_ //
// o8888888o //
// 88" . "88 //
// (| ^_^ |) //
// O\ = /O //
// ____/`---'\____ //
// .' \\| |// `. //
// / \\||| : |||// \ //
// / _||||| -:- |||||- \ //
// | | \\\ - /// | | //
// | \_| ''\---/'' | | //
// \ .-\__ `-` ___/-. / //
// ___`. .' /--.--\ `. . ___ //
// ."" '< `.___\_<|>_/___.' >'"". //
// | | : `- \`.;`\ _ /`;.`/ - ` : | | //
// \ \ `-. \_ __\ /__ _/ .-` / / //
// ========`-.____`-.___\_____/___.-`____.-'======== //
// `=---=' //
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
// 佛祖保佑 永无Bug 永不宕机 //
// Name耗子Linux面板 Author耗子 Date2022-11-30 //
////////////////////////////////////////////////////////////////////
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ config('panel.name') }}</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.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<link href="{{asset('layui/css/layui.css')}}" rel="stylesheet">
<script src="https://cdnjs.cdn.wepublish.cn/ace/1.6.1/ace.js"></script>
</head>
<body>
<div id="HaoZi_panel"></div>
<script src="{{asset('layui/layui.js')}}"></script>
<script>
layui.config({
base: 'panel/'
, version: {{config('panel.version')}}
}).use('index', function () {
let layer = layui.layer, admin = layui.admin, $ = layui.jquery;
layer.ready(function () {
/*admin.popup({
content: '当前面板为公测版本,如遇到问题请联系耗子反馈!</br>QQ: 823374000'
, area: '380px'
, shade: false
, offset: 't'
});*/
});
});
</script>
</body>
</html>