blossom-cloudron/public/index.html
2024-11-04 16:09:32 +01:00

26 lines
678 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./lib/tailwind.min.css" rel="stylesheet" />
<title>Blossom Server</title>
<script type="module" src="./main.js"></script>
</head>
<body>
<blossom-app></blossom-app>
<script>
window.wnjParams = {
position: "top",
// Supported values: cyan (default), green, purple, red, orange, neutral, stone
accent: "purple",
compactMode: true,
disableOverflowFix: true,
};
</script>
<script src="./lib/window.nostr.js"></script>
</body>
</html>