shithub: hugo

ref: 4bed69629e55f7292505a74e8437a5a05ddf9a22
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>