mirror of
https://github.com/hzrd149/nsite-gateway.git
synced 2025-06-23 12:05:01 +00:00
30 lines
712 B
HTML
30 lines
712 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>nsite</title>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"blossom-client-sdk": "https://esm.run/blossom-client-sdk",
|
|
"nostr-tools": "https://esm.run/nostr-tools",
|
|
"lit": "https://esm.run/lit",
|
|
"lit/directives/repeat.js": "https://esm.run/lit/directives/repeat.js"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
nostr-picture > img {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<script type="module" src="./main.js"></script>
|
|
</head>
|
|
<body>
|
|
<nsite-app></nsite-app>
|
|
</body>
|
|
</html>
|