ref: d313bc78a478f9457ce8b496ede0b231e6b4d0f1
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>