hugo-theme-minima/layouts/_default/single.html

32 lines
846 B
HTML
Raw Normal View History

2021-07-18 10:34:01 +02:00
{{ define "main" }}
2022-11-08 11:07:48 +01:00
<div class="container mx-auto">
<h1 class="text-4xl font-extrabold mt-6 mb-6">{{ .Title }}</h1>
2022-11-08 16:10:57 +01:00
<div class="mb-3 text-sm flex justify-between ">
<div>
{{ if .Site.Params.displayDate }}
2022-11-08 16:10:57 +01:00
{{ T "post.at" }} &mdash; {{ .Date | time.Format (T "timeformat") }}
{{ end }}
{{ if .Draft }}
2022-11-08 11:07:48 +01:00
<span class="ml-3 tag">
DRAFT
</span>
{{ end }}
</div>
{{ if .Params.tags }}
2022-11-08 11:07:48 +01:00
<div>
2022-11-09 09:03:19 +01:00
{{ range $tag := .Params.tags }}
{{ $url := printf "tags/%s" $tag | relLangURL }}
<a class="ml-1" href="{{ $url }}">#{{ . }}</a>
{{ end }}
</div>
{{ end }}
</div>
2022-11-09 11:03:38 +01:00
<main class="mb-8">
<p>{{ .Description | markdownify | safeHTML }}</p>
<article class="md">
{{ .Content }}
</article>
</main>
2022-11-09 09:03:19 +01:00
{{ partial "plugin.html" . }}
</div>
2021-08-04 03:49:55 +02:00
{{ end }}