website/themes/datacoop2020/layouts/services/list.html

23 lines
330 B
HTML
Raw Normal View History

{{- define "main" -}}
<h1>{{ .Title }}</h1>
2022-11-23 14:15:08 +00:00
{{ .Content }}
{{ $pages := .Pages }}
2022-11-23 14:15:08 +00:00
<dl class="dl-services">
{{ range $pages.ByTitle }}
<dt><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2></dt>
<dd>
{{ .Summary }}
2022-11-23 14:15:08 +00:00
</dd>
{{ end }}
2023-01-21 18:44:02 +00:00
</dl>
{{ partial "badges.html" . }}
{{- end -}}
2023-01-21 18:44:02 +00:00