website/themes/datacoop2020/layouts/services/list.html
Benjamin Bach bab30c960a
All checks were successful
continuous-integration/drone/pr Build is passing
Update services w/o description, change some badge status, add PrivateBin
2023-04-02 00:26:14 +02:00

26 lines
429 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 := index (split .Content "</p>") 0 }}
{{ $summary | plainify }}
</dd>
{{ end }}
</dl>
{{ partial "badges.html" . }}
{{ partial "status.html" . }}
{{- end -}}