mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2026-01-11 21:16:20 +00:00
24 lines
760 B
HTML
24 lines
760 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="application-name" content="WGDashboard">
|
|
<meta name="apple-mobile-web-app-title" content="WGDashboard">
|
|
<base href="{{ APP_PREFIX if APP_PREFIX else '' }}/">
|
|
<link rel="manifest" href="./json/manifest.json">
|
|
<link rel="icon" href="./img/Logo-2-512x512.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WGDashboard</title>
|
|
<script>
|
|
window.APP_PREFIX = "{{ APP_PREFIX if APP_PREFIX else '' }}";
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<script type="module" src="./src/main.js"></script>
|
|
</body>
|
|
</html>
|