{{- /*
tags.tmpl ~ List the category and platform tags for html3.
*/ -}}
{{- /* white space are preserved and is used for formatting */}}
{{define "content"}}
{{- $parent := "Parent Directory" }}
{{- $padding := 41 }}
{{- $first := index . "tagFirst" }}
{{- $end := index . "tagEnd" }}
{{- $path := index . "path" }}
{{$parent}}{{leadStr $padding $parent}} - Return to the HTML3 index.
{{ range $index, $value := .tags -}}
{{- $meta := metaByName $value -}}
{{if and (gt $first -1) (lt $index $first)}}{{continue}}{{end -}}
{{if and (gt $first -1) (gt $index $end)}}{{break}}{{end -}}
{{$meta.Name}}{{leadStr $padding $meta.Name}}{{leadInt 5 $meta.Count}} {{ $meta.Info }}.
{{end}}