shithub: hugo

ref: 4c95b700208286687e40a367eb3bc2446eca6912
dir: /docs/layouts/shortcodes/fileindex.html/

View raw version
<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>