21 lines
550 B
HTML
21 lines
550 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="./favicon.ico" type ="image/x-icon">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<%- seoScript %>
|
|
<%- gciPlayer %>
|
|
|
|
<title><%- title %></title>
|
|
</head>
|
|
<body class="dark:bg-primary-dark-color">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<script>
|
|
window.gciplayerMonitor = gciplayerMonitor
|
|
window.gciplayer = gciplayer
|
|
</script>
|
|
</body>
|
|
</html>
|