{{- $base := .Req.URL.Path -}} {{- $readme := printf "%sREADME.md" $base -}} {{- if fileExists $readme -}} {{markdown (readFile $readme)}} {{- else -}}
{{$base}}
No README.md in this folder.
{{- end }}
Downloads
{{- range listFiles $base -}} {{- if and (ne . "README.md") (ne . "index.html") -}}
{{.}}
{{- end -}} {{- end }}