Files
fte-Homepage/themes/tella/layouts/products/single.html
Fabian T. Ecke 72f74d189b
All checks were successful
Website / Website veröffentlichen (push) Successful in 6s
changed color of product page text
2026-01-18 14:17:36 +01:00

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 }}