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
215 B

  1. {{ define "edit" }}
  2. {{ range (readDir ".") }}
  3. {{ if .IsDir }}
  4. <p>Dir: {{ .Name }}</p>
  5. {{ partial "readdir.html" .Name }}
  6. {{ else }}
  7. <p>File: {{ .Name }}
  8. {{ end }}
  9. {{ end }}
  10. {{ end }}