Files
cloudron-box/dashboard/index.html

21 lines
549 B
HTML
Raw Normal View History

2018-01-22 13:01:38 -08:00
<!DOCTYPE html>
2025-03-16 11:12:49 +01:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<link id="favicon" rel="icon" href="/api/v1/cloudron/avatar" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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>
2018-01-22 13:01:38 -08:00
</html>