Merge commit 'dd78d5b23fe597f4461aa4199401b4e07c0612e2' as 'docs'

This commit is contained in:
Bjørn Erik Pedersen
2017-06-26 20:46:06 +02:00
491 changed files with 27233 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{{- $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 }}"> {{ .Name }}</a></td>
</tr>
{{- end }}
</table>