mirror of
https://github.com/aljazceru/njump.git
synced 2026-01-17 13:24:29 +01:00
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html class="theme--default text-lg sm:text-xl font-light print:text-base">
|
|
<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 | mb-16 print:text-black text-gray-600 dark:text-neutral-50 bg-white dark:bg-stone-900"
|
|
>
|
|
{{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="h-1.5 mb-6 -ml-4 sm:-ml-2.5 bg-zinc-100 dark:bg-zinc-700 w-1/3"
|
|
></div>
|
|
|
|
<div class="leading-5 mb-6">
|
|
<div class="text-sm text-strongpink">Author Public key</div>
|
|
<a href="/{{.Npub}}">{{.Npub}}</a>
|
|
</div>
|
|
|
|
{{template "details" .DetailsPartial}}
|
|
|
|
<div
|
|
class="h-1.5 mb-6 -ml-4 sm:-ml-2.5 bg-zinc-100 dark:bg-zinc-700 w-1/3"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|