Transactional pages

This commit is contained in:
2024-11-03 19:43:53 +02:00
parent 9a31cd9e49
commit fe053d7bb4
10 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{{ define "main" }}
<section class="mb-8">
<div class="container flex flex-col items-center">
<div class="mb-6 text-center">
<h1>{{ .Params.Title }}</h1>
{{ with .Params.Subtitle }}
<h4>{{ . }}</h4>
{{ end }}
</div>
{{ if .Params.main_image }}
<div>
{{ partial "image" (dict "Src" .Params.main_image "Context" .Page "Alt" .Title "Class" "") }}
</div>
{{ end }}
<div class="content">
{{ .Content }}
{{ partial "components/contact.html" . }}
</div>
</div>
</section>
{{ end }}