28 lines
979 B
HTML
28 lines
979 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="white">
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black">
|
|
|
|
<link rel="icon" id="favicon" href="/api/v1/cloudron/avatar" />
|
|
|
|
<title>Cloudron Dashboard</title>
|
|
<style>
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: black;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app" style="overflow: hidden; height: 100%;"></div>
|
|
<script type="module" src="/src/index.js"></script>
|
|
</body>
|
|
</html>
|