git

My personal website source code
Log | Files | Refs | Submodules | README | LICENSE

list-files.html (236B)


      1 {{ $dir := .Get "dir" }}
      2 {{ $regexp := .Get "regexp" }}
      3 
      4 {{ range sort (readDir (delimit (slice "static" $dir) "/")) "Name" }}
      5   {{ if (findRE $regexp .Name) }}
      6     <a href="{{ $dir }}/{{ .Name }}">{{ .Name }}</a>
      7   {{ end }}
      8 {{ end }}