{{ partial "header.html" . }}
{{ .Content }}
Security advisories by year
Reference |
Affected |
Fixed |
CVSS score |
Description |
{{ $pages := .Pages.GroupByDate "2006" "desc" }}
{{ $earliest_year := (index (.Pages.GroupByDate "2006" "asc") 0).Key }}
{{ range $year := seq (now.Format "2006") $earliest_year }}
{{ $has_any := false }}
{{ range $pages }}
{{ if eq $year (int .Key) }}
{{ $has_any = true}}
{{ break }}
{{ end }}
{{ end }}
{{ if $has_any }}
{{ range $pages }}
{{ if eq $year (int .Key) }}
{{ .Key }} |
{{ range .Pages }}
{{ .Params.cve }} |
{{ .Params.affected }} |
{{ .Params.fixed }} |
{{ .Params.severity }} |
{{ .Params.summary }} |
{{ end }}
{{ end }}
{{ end }}
{{ else }}
{{ $year }} |
No issues reported |
{{ end }}
{{ end }}
{{ partial "footer.html" . }}