mirror of
https://github.com/aljazceru/njump.git
synced 2026-01-17 13:24:29 +01:00
43 lines
1.2 KiB
HTML
43 lines
1.2 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" .HeadCommonPartial}}
|
|
</head>
|
|
|
|
<body
|
|
class="mb-16 print:text-black text-gray-600 dark:text-neutral-50 bg-white dark:bg-neutral-800"
|
|
>
|
|
{{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-48vw max-w-screen-2xl print:w-full"
|
|
>
|
|
<div class="break-words w-full sm:w-9/12 print:w-full">
|
|
<header class="">
|
|
<div class="text-2xl mb-4">{{.KindDescription}}</div>
|
|
</header>
|
|
|
|
{{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>
|