You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
seuh2022/layouts/termine/list.html

33 lines
860 B
HTML

{{ define "header_css" }}{{ end }}
{{ define "body_classes" }}page-services-list{{ end }}
{{ define "header_classes" }}{{ end }}
{{ define "main" }}
{{ partial "hero-image-setheight.html" (dict "background" .Params.heroBackground "heading" .Params.heroHeading "subheading" .Params.heroSubHeading "content" .)}}
{{ if .Content }}
<div class="container pt-6 pt-md-10">
<div class="row">
<div class="col-12">
<div class="page-intro">
{{ .Content }}
</div>
</div>
</div>
</div>
{{ end }}
<div class="container pb-6 pt-6 pb-md-10 pt-md-10">
<div class="row">
{{ range .Pages.ByWeight }}
<div class="col-12 col-md-6 mb-2 ">{{ .Render "summary" }}</div>
{{ end }}
</div>
</div>
{{ end }}
{{ define "template" }}
{{ partial "show-template" (dict "Which" .Kind "Template" "layouts/termine/list.html") }}
{{ end }}