All checks were successful
Website / Website veröffentlichen (push) Successful in 6s
15 lines
428 B
HTML
15 lines
428 B
HTML
{{ define "main" }}
|
|
<div class="mx-auto my-10 max-w-6xl">
|
|
<div class="mx-3 col-span-3 lg:col-span-2 px-2">
|
|
<h1 class="title text-5xl mb-4">{{.Title}}</h1>
|
|
{{ if .Params.image }}
|
|
{{ with .Params.image }}
|
|
<img src="{{ . | relURL }}" alt="">
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ end }}
|
|
<div class="content text-white-custom md:prose-lg lg:prose-xl max-w-none py-1">{{.Content}}</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|