mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 09:37:28 +00:00
* ✨ feat: mount DynamicFavicon to enable favicon state switching during agent operations Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * 🐛 fix: add favicon link tags to SPA HTML templates and handle missing links in updateFaviconDOM Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
70 lines
2.5 KiB
HTML
70 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="shortcut icon" href="/favicon-32x32.ico" />
|
|
<!--SEO_META-->
|
|
<style>
|
|
html body {
|
|
background: #f8f8f8;
|
|
}
|
|
html[data-theme='dark'] body {
|
|
background-color: #000;
|
|
}
|
|
</style>
|
|
<script>
|
|
(function(){
|
|
var O=globalThis.Worker;
|
|
globalThis.Worker=function(u,o){
|
|
var h=typeof u==='string'?u:u instanceof URL?u.href:'';
|
|
if(h.startsWith('http')&&!h.startsWith(location.origin)){
|
|
var b=new Blob(['import "'+h+'";'],{type:'application/javascript'});
|
|
return new O(URL.createObjectURL(b),Object.assign({},o,{type:'module'}));
|
|
}return new O(u,o)};
|
|
globalThis.Worker.prototype=O.prototype;
|
|
})();
|
|
</script>
|
|
<script>
|
|
(function () {
|
|
var theme = 'system';
|
|
try {
|
|
theme = localStorage.getItem('theme') || 'system';
|
|
} catch (_) {}
|
|
var systemTheme =
|
|
window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
? 'dark'
|
|
: 'light';
|
|
var resolvedTheme = theme === 'system' ? systemTheme : theme;
|
|
if (resolvedTheme === 'dark' || resolvedTheme === 'light') {
|
|
document.documentElement.setAttribute('data-theme', resolvedTheme);
|
|
}
|
|
|
|
var hl = new URLSearchParams(location.search).get('hl');
|
|
var m = document.cookie.match(/(?:^|;\s*)LOBE_LOCALE=([^;]*)/);
|
|
var cookie = m ? decodeURIComponent(m[1]) : '';
|
|
var locale = hl || cookie || navigator.language || 'en-US';
|
|
if (locale === 'auto') locale = navigator.language || 'en-US';
|
|
if (hl && !cookie) {
|
|
document.cookie =
|
|
'LOBE_LOCALE=' + encodeURIComponent(hl) + ';path=/;max-age=7776000;SameSite=Lax';
|
|
}
|
|
document.documentElement.lang = locale;
|
|
var rtl = ['ar', 'arc', 'dv', 'fa', 'ha', 'he', 'khw', 'ks', 'ku', 'ps', 'ur', 'yi'];
|
|
document.documentElement.dir =
|
|
rtl.indexOf(locale.split('-')[0].toLowerCase()) >= 0 ? 'rtl' : 'ltr';
|
|
})();
|
|
</script>
|
|
<script>
|
|
window.__SERVER_CONFIG__ = undefined; /* SERVER_CONFIG */
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" style="height: 100%"></div>
|
|
|
|
<!--ANALYTICS_SCRIPTS-->
|
|
<script type="module" src="/src/spa/entry.mobile.tsx"></script>
|
|
</body>
|
|
</html>
|