aboutsummaryrefslogtreecommitdiff
path: root/example-site/checkup.md
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-07-18 16:27:24 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-07-18 16:27:24 -0400
commitbcf6d391f17a193c81ad6643f8d006de6c6abad8 (patch)
treeb8eaec45b02d79f8d51d6726ffbbe34ce5de2ed7 /example-site/checkup.md
parent904e37a88a6a2eab3919f7f2c40bbb2c07544a7c (diff)
downloadgo-website-bcf6d391f17a193c81ad6643f8d006de6c6abad8.tar.gz
go-website-bcf6d391f17a193c81ad6643f8d006de6c6abad8.tar.xz
Adjust the program a bit, remove clunky "head" templates. Add an example site among other improvementsv0.0.13
Diffstat (limited to 'example-site/checkup.md')
-rw-r--r--example-site/checkup.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/example-site/checkup.md b/example-site/checkup.md
new file mode 100644
index 0000000..622d836
--- /dev/null
+++ b/example-site/checkup.md
@@ -0,0 +1,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}}
+```
+
+-->