ref: 9c7d6e475cfa5ac847ffa9e0abaed3abc7df9f3d
dir: /docs/layouts/shortcodes/directoryindex.html/
{{- $pathURL := .Get "pathURL" -}} {{- $path := .Get "path" -}} {{- $files := readDir $path -}} <table> <th>Size in bytes</th> <th>Name</th> {{- range $files }} <tr> <td>{{ .Size }}</td> <td><a href="{{ $pathURL }}{{ .Name | relURL }}" target="_blank"> {{ .Name }}</a></td> </tr> {{- end }} </table>