-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdashboard.blade.php
More file actions
29 lines (29 loc) · 928 Bytes
/
dashboard.blade.php
File metadata and controls
29 lines (29 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="/theme/Dream/favicon.ico">
<title>{{$title}}</title>
<script defer src="/theme/Dream//js/chunk-vendors.js"></script>
<script defer src="/theme/Dream/js/app.js"></script>
</head>
<body>
<div id="app"></div>
</body>
<script>
window.setting = {
ios: '{{$theme_config['ios']}}',
android: '{{$theme_config['android']}}',
mac: '{{$theme_config['mac']}}',
windows: '{{$theme_config['windows']}}',
logo: '{{$logo}}',
title: '{{$title}}'
};
</script>
{!! $theme_config['custom_html'] !!}
<script src="/theme/Dream/i18n/i18n.js"></script>
<script src="/theme/Dream/i18n/zh_CN.js"></script>
<script src="/theme/Dream/i18n/en.js"></script>
</html>