ref: 69c28985ea6ca58ebb0b34f30f9f43f42502d318
dir: /docs/layouts/shortcodes/fileindex.html/
<table style="width=100%"> <th>Size in bytes</th> <th>Name</th> {{$dir := .Get "dir"}} {{ $url := .Get "baseurl" }} {{ $files := readDir $dir }} {{ range $files }} <tr> <td>{{.Size}}</td> <td> <a href="{{$url}}{{.Name | urlize }}"> {{.Name}}</a> </td> </tr> {{ end }} </table>