0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-22 08:58:11 +00:00
Files
homebrewery/index.html
Víctor Losada Hernández 12c3b8112b fix tab title handling
2026-03-22 02:14:55 +01:00

47 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, height=device-height, interactive-widget=resizes-visual" />
<link
href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700"
rel="stylesheet"
type="text/css" />
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon" />
<meta name="twitter:card" content="summary" />
<title>The Homebrewery - NaturalCrit</title>
</head>
<body>
<main id="reactRoot"></main>
<script type="module">
const url = window.__INITIAL_PROPS__.config.baseUrl;
console.log(window.__INITIAL_PROPS__);
const title = window.__INITIAL_PROPS__.brew.title;
if(title && title.length !== 0) {
document.title = `${title} - The Homebrewery`
}
if (url.includes('://homebrewery-pr-')) {
const match = url.match(/pr-(\d+)/);
if (match) {
document.title = `PR-${match[1]} ` + document.title;
}
} else if (url.includes('://localhost:')) {
document.title = `LOCAL - ` + document.title;
}
if (window.location.pathname.startsWith('/admin')) {
import('/client/admin/main.jsx');
} else {
import('/client/homebrew/main.jsx');
}
</script>
</body>
</html>