mirror of
https://github.com/aljazceru/njump.git
synced 2026-01-17 21:34:22 +01:00
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html class="theme--default">
|
|
<meta charset="UTF-8" />
|
|
<head>
|
|
{{ if .IsParameterizedReplaceable }}
|
|
<title>Nostr Entity {{.Naddr}}</title>
|
|
{{ else }}
|
|
<title>Nostr Event {{.Kind}} - {{.KindDescription }}</title>
|
|
{{ end }}
|
|
|
|
<!---->
|
|
{{template "head_common" .}}
|
|
</head>
|
|
|
|
<body class="other">
|
|
{{template "top" .}}
|
|
|
|
<div
|
|
class="block sm:flex sm:justify-center sm:items-center mx-auto px-4 sm:px-0"
|
|
>
|
|
<div
|
|
class="flex w-full sm:w-9/12 px-4 justify-between overflow-visible gap-10 lg:gap-20 print:w-full"
|
|
>
|
|
<div class="column column_content">
|
|
<header class="">
|
|
<div class="text-2xl mb-4">{{.KindDescription}}</div>
|
|
</header>
|
|
|
|
<div class="field separator"></div>
|
|
|
|
<div class="field">
|
|
<div class="label">Author Public key</div>
|
|
<a href="/{{.Npub}}">{{.Npub}}</a>
|
|
</div>
|
|
|
|
{{template "details" .DetailsPartial}}
|
|
|
|
<div class="field separator"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|