mirror of
https://github.com/aljazceru/njump.git
synced 2025-12-17 06:14:22 +01:00
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html class="theme--default text-lg font-light print:text-base sm:text-xl">
|
|
<meta charset="UTF-8" />
|
|
<head>
|
|
<title>Nostr Event {{.Kind}} - {{.KindDescription }}</title>
|
|
|
|
<!---->
|
|
{{template "head_common" .HeadCommonPartial}}
|
|
</head>
|
|
|
|
<body
|
|
class="mb-16 bg-white text-gray-600 dark:bg-neutral-900 dark:text-neutral-50 print:text-black"
|
|
>
|
|
{{template "top" .}}
|
|
|
|
<div
|
|
class="mx-auto block px-4 sm:flex sm:items-center sm:justify-center sm:px-0"
|
|
>
|
|
<div
|
|
class="flex w-full max-w-screen-2xl justify-between gap-10 overflow-visible px-4 print:w-full sm:w-11/12 md:w-10/12 lg:w-9/12 lg:gap-48vw"
|
|
>
|
|
<div class="w-full break-words print:w-full md:w-10/12 lg:w-9/12">
|
|
<header class="">
|
|
<div class="mb-4 text-2xl">{{.KindDescription}}</div>
|
|
</header>
|
|
|
|
{{ if not (eq "" .Alt) }}
|
|
<div
|
|
class="-ml-4 mb-6 h-1.5 w-1/3 bg-zinc-100 dark:bg-zinc-700 sm:-ml-2.5"
|
|
></div>
|
|
|
|
<article
|
|
class="prose-cite:text-sm prose prose mb-6 leading-5 dark:prose-invert"
|
|
>
|
|
{{.Alt}}
|
|
</article>
|
|
{{ end }}
|
|
|
|
<!---->
|
|
{{template "details" .DetailsPartial}}
|
|
|
|
<div
|
|
class="-ml-4 mb-6 h-1.5 w-1/3 bg-zinc-100 dark:bg-zinc-700 sm:-ml-2.5"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|