28 lines
916 B
HTML
28 lines
916 B
HTML
<!doctype html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" id="lc-dp-favicon" href="" />
|
|
<link rel="stylesheet" href="./src/icons/iconfont.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title id="lc-dp-title"></title>
|
|
<script>
|
|
// 从 localStorage 中获取标题和图标
|
|
;(function () {
|
|
const title = localStorage.getItem('ling_shu_logo_title') || ''
|
|
const favicon = localStorage.getItem('ling_shu_logo_icon') || ''
|
|
if (title) {
|
|
document.getElementById('lc-dp-title').textContent = title
|
|
}
|
|
if (favicon) {
|
|
document.getElementById('lc-dp-favicon').href = favicon
|
|
}
|
|
})()
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app" class="ling_shu_lc_dp_micro_app ling_shu_lc_dp"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|