mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
13 lines
332 B
HTML
13 lines
332 B
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 }}" target="_blank"> {{ .Name }}</a></td>
|
|
</tr>
|
|
{{- end }}
|
|
</table>
|