cert-checker
Last update: {{ timeNow }}
{{ len .BadCerts }} Errors
{{ len .WarningCerts }} Warnings
{{ len .GoodCerts }} All Goods
{{ if .BadCerts }}
Errors
{{ range $key, $cert := .BadCerts }}
{{ template "cert" $cert }}
{{ end }}
{{ end }}
{{ if .WarningCerts }}
Warnings
{{ range $key, $cert := .WarningCerts }}
{{ template "cert" $cert }}
{{ end }}
{{ end }}
{{ if .GoodCerts }}
All Goods
{{ range $key, $cert := .GoodCerts }}
{{ template "cert" $cert }}
{{ end }}
{{ end }}