mirror of
https://github.com/hzrd149/nsite-gateway.git
synced 2025-06-23 12:05:01 +00:00
33 lines
790 B
HTML
33 lines
790 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>
|
|
<h1>nsite-ts</h1>
|
|
<a href="https://github.com/hzrd149/nsite-ts" target="_blank">Source Code</a>
|
|
|
|
<h2>Latest nsites:</h2>
|
|
<div id="sites"></div>
|
|
|
|
<template id="site">
|
|
<div class="site">
|
|
<a class="pubkey link"></a>
|
|
<span class="date"></span>
|
|
</div>
|
|
</template>
|
|
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html>
|