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.
|
{{ $parentName := . }} |
|
{{ range (readDir .) }} |
|
{{ $currentName := printf "%s/%s" $parentName .Name }} |
|
{{ if .IsDir }} |
|
<p>_Dir: {{ $currentName }}</p> |
|
{{ partial "readdir.html" $currentName }} |
|
{{ else }} |
|
<p>_File: {{ $currentName }} |
|
{{ end }} |
|
{{ end }}
|
|
|