You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
273 B

  1. {{ $parentName := . }}
  2. {{ range (readDir .) }}
  3. {{ $currentName := printf "%s/%s" $parentName .Name }}
  4. {{ if .IsDir }}
  5. <p>_Dir: {{ $currentName }}</p>
  6. {{ partial "readdir.html" $currentName }}
  7. {{ else }}
  8. <p>_File: {{ $currentName }}
  9. {{ end }}
  10. {{ end }}