ref: 1b2be5e878c0bd8c68731389e46bf1c6d3664635
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 }}"> {{ .Name }}</a></td> </tr> {{- end }} </table>