34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
{{ define "main" }}
|
|
<article
|
|
class="prose prose-lg prose-h2:text-neutral-600 prose-h2:text-4xl mt-10"
|
|
>
|
|
<div class="text-xs md:text-sm mb-4">
|
|
{{ .Date | time.Format ":date_long" }}
|
|
</div>
|
|
<h1 class="text-neutral-600">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
{{- partial "post-gallery.html" . -}}
|
|
<div class="flex flex-row justify-between mt-8">
|
|
<div>
|
|
{{ if .Prev }}
|
|
<a
|
|
class="underline text-tertiary-600 hover:text-tertiary-500 visited:text-primary-400"
|
|
href="{{ .Prev.Permalink }}"
|
|
>Vorheriger: {{ .Prev.Title }}</a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
<div>
|
|
{{ if .Next }}
|
|
<a
|
|
class="underline text-tertiary-600 hover:text-tertiary-500 visited:text-primary-400"
|
|
href="{{ .Next.Permalink }}"
|
|
>Nächster: {{ .Next.Title }}</a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</article>
|
|
<meta name="fediverse:creator" content="@kossa@social.kollar.cloud">
|
|
{{ end }}
|