New: Model template

This commit is contained in:
2026-03-02 20:33:30 +01:00
parent f1aedfb218
commit 3aefa3ef04
60 changed files with 1348 additions and 112 deletions

View File

@@ -1,7 +1,6 @@
{{ define "main" }}
{{ partial "hero.html" . }}
{{ partial "usps.html" . }}
{{ if .Params.info_section }}
<section class="info-section py-5 my-lg-5">
<div class="container">
@@ -30,9 +29,9 @@
<div class="info-content">
{{ range .Params.info_section.text_paragraphs }}
<p class="lead-text mb-4 text-muted">
{{ . | markdownify }}
</p>
<div class="mb-4">
{{ .paragraph | markdownify }}
</div>
{{ end }}
</div>
</div>
@@ -41,15 +40,16 @@
</div>
</section>
{{ end }}
{{ partial "mogelijkheden.html" . }}
{{ partial "map.html" . }}
{{ partial "modellen.html" . }}
{{ if .Content }}
<div class="container my-5">
{{ .Content }}
</div>
{{ end }}
{{ partial "modellen.html" . }}
{{ partial "mogelijkheden.html" . }}
{{ partial "map.html" . }}
{{ if .Params.about_section }}
<section class="info-section py-5 my-lg-5">
@@ -61,7 +61,7 @@
{{ with .Params.about_section.image }}
<img src="{{ . | relURL }}"
alt="{{ $.Params.info_section.image_alt | default "Van Emous Mantelzorgwoningen" }}"
class="img-fluid rounded-img shadow fade-left">
class="img-fluid rounded-img shadow">
{{ end }}
</div>
</div>
@@ -79,7 +79,7 @@
<div class="info-content">
{{ range .Params.about_section.text_paragraphs }}
<p class="lead-text mb-4 text-muted">
<p class="mb-4">
{{ . | markdownify }}
</p>
{{ end }}
@@ -90,4 +90,9 @@
</div>
</section>
{{ end }}
{{ partial "faq.html" . }}
{{ partial "footer-contact.html" . }}
{{ end }}