Files
Xboard/public/theme/Xboard/dashboard.blade.php
T
xboard d1470bb19d fix:[Xboard主题] 进行了各种改进和修复
1、去除未使用的图片
2、修改Google验证码reCaptcha地址为www.recaptcha.net
3、修复部分页面返回最顶部按钮被挡住的问题
4、补全部分缺失的语言包
5、修复部分分辨率下侧边栏菜单切换后不会自动收起的问题
6、修复暗黑模式下登陆注册忘记密码页面为白色背景的问题
7、调整手机端弹窗增加与屏幕边界的间隙
8、当有未完成订单的情况下,增加首页重置流量的弹窗提示
9、修复节点列表在手机端上显示不协调的问题
10、去除工单ID的显示
2024-04-02 14:45:54 +08:00

37 lines
851 B
PHP

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" />
<title>{{$title}}</title>
<script type="module" crossorigin src="/theme/{{$theme}}/assets/umi.js"></script>
</head>
<body>
<script>
window.routerBase = "/";
window.settings = {
title: '{{$title}}',
assets_path: '/theme/{{$theme}}/assets',
version: '{{$version}}',
background_url: '{{$theme_config['background_url']}}',
description: '{{$description}}',
i18n: [
'zh-CN',
'en-US',
'ja-JP',
'vi-VN',
'ko-KR',
'zh-TW',
'fa-IR'
],
logo: '{{$logo}}'
}
</script>
<div id="app"></div>
{!! $theme_config['custom_html'] !!}
</body>
</html>