mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-01-02 05:03:07 +00:00
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Nomos Block Explorer</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="Lightweight Nomos block Explorer UI" />
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
|
|
<!-- Speed up first connection to ESM CDN -->
|
|
<link rel="dns-prefetch" href="https://esm.sh" />
|
|
<link rel="preconnect" href="https://esm.sh" crossorigin />
|
|
|
|
<!-- Import map must appear BEFORE any modulepreload that relies on it -->
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"preact": "https://esm.sh/preact@10.22.0",
|
|
"preact/hooks": "https://esm.sh/preact@10.22.0/hooks"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Safe to preload after the import map -->
|
|
<link rel="modulepreload" href="/static/app.js" />
|
|
<link rel="modulepreload" href="https://esm.sh/preact@10.22.0" crossorigin />
|
|
<link rel="modulepreload" href="https://esm.sh/preact@10.22.0/hooks" crossorigin />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|