mirror of
https://github.com/hzrd149/nsite-gateway.git
synced 2025-06-23 03:55:02 +00:00
22 lines
603 B
HTML
22 lines
603 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"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<input type="file" id="files" webkitdirectory directory multiple />
|
|
<button id="upload-button">Upload nsite</button>
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html>
|