aboutsummaryrefslogtreecommitdiff
path: root/example-site/checkup.md
blob: 622d8369fca974ec7c64ef031d150b8b998b9769 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
title: Example checkup page
description: Showing the output of one of the internal checkup mechanisms

|---

# {{.Title}}

# Status

Current statuses:
```
{{range $key, $val := .Checkup}}{{$key}}
{{end}}
```

{{range $key, $val := .Checkup}}
## {{$key}}:
{{range $page := $val}}
```
{{$page}}
{{$.EncodeYaml $page}}
```
{{end}}
{{end}}


<!-- 

## Raw

```
{{.EncodeYaml .Checkup}}
```

-->