website/themes/datacoop2020/layouts/services/list.html
Benjamin Bach e8600df568
All checks were successful
continuous-integration/drone/pr Build is passing
Update to Danish "services" section so it's minimally viable for publication
2022-11-22 23:19:36 +01:00

18 lines
286 B
HTML

{{- define "main" -}}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ $pages := .Pages }}
<dl class="dl-services">
{{ range $pages.ByTitle }}
<dt><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2></dt>
<dd>
{{ .Summary }}
</dd>
{{ end }}
{{- end -}}