ref: 8b0c3b9b271c7f3eaa812f7a98bb738fe9cc1846
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>