mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-07 06:23:39 +08:00
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link href="/favicon.ico" rel="icon">
|
|
<link href="/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32">
|
|
<meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
|
|
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="theme-color" content="#ffffff">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="apple-mobile-web-app-title" content="Nginx UI">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-config" content="/browserconfig.xml">
|
|
|
|
<!-- Apple Touch Icons -->
|
|
<link rel="apple-touch-icon" sizes="192x192" href="/pwa-192x192.png">
|
|
<link rel="apple-touch-icon" sizes="512x512" href="/pwa-512x512.png">
|
|
|
|
<style>
|
|
body {
|
|
height: auto !important;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body.dark {
|
|
background-color: #141414;
|
|
color: #fff;
|
|
}
|
|
|
|
#app {
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
<title>Nginx UI</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
|
|
</html> |