mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-16 18:22:16 +00:00
git-subtree-dir: themes/gohugoioTheme git-subtree-split: 7dd8a302409a20362e4c610798cc19661b336363
14 lines
332 B
HTML
14 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>
|