mirror of
https://github.com/aljazceru/njump.git
synced 2026-01-16 21:04:21 +01:00
48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html class="theme--default">
|
|
<meta charset="UTF-8" />
|
|
<head>
|
|
{{ if eq .type "address" }}
|
|
<title>Nostr Address {{.naddr | escapeString }}</title>
|
|
{{end}}
|
|
{{ if eq .type "other" }}
|
|
<title>Nostr Event {{.kindID}} - {{.kindDescription | escapeString }}</title>
|
|
{{end}}
|
|
|
|
{{template "head_common.html" }}
|
|
</head>
|
|
|
|
<body class="other">
|
|
{{template "top.html" .}}
|
|
|
|
<div class="container_wrapper">
|
|
<div class="container">
|
|
<div class="column column_content">
|
|
<header class="profile_intro">
|
|
<div class="info-wrapper">
|
|
<div class="kind_desc">{{.kindDescription | escapeString}}</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="field separator"></div>
|
|
|
|
<div class="field">
|
|
<div class="label">Author Public key</div>
|
|
<a href="/{{.npub | escapeString}}">{{.npub | escapeString}}</a>
|
|
</div>
|
|
|
|
{{template "details.html" .}}
|
|
|
|
<div class="field separator"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "footer.html"}}
|
|
|
|
<script>
|
|
{{template "scripts.js"}}
|
|
</script>
|
|
</body>
|
|
</html>
|