Rebuilding the Machine Listening Curriculum beginning in 2024
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.

14 line
400 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. {{ if eq (path.Ext .Name) ".md" }}
  9. {{ $f := readFile $currentName }}
  10. <textarea wrap="off" col="108" row="48 ">{{ $f }}</textarea>
  11. {{ end }}
  12. {{ end }}
  13. {{ end }}