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

26 lines
429 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 := index (split .Content "</p>") 0 }}
{{ $summary | plainify }}
2022-11-23 14:15:08 +00:00
</dd>
{{ end }}
2023-01-21 18:44:02 +00:00
</dl>
{{ partial "badges.html" . }}
{{ partial "status.html" . }}
{{- end -}}
2023-01-21 18:44:02 +00:00