go-file-serve/templates/list.tmpl

13 lines
227 B
Cheetah
Raw Normal View History

2019-02-26 09:43:18 +00:00
{{ template "head.tmpl" . }}
<h3>Index Of {{ .path }}</h3>
<hr />
<pre>
{{ range .list }}
2019-02-27 06:38:59 +00:00
<a href="/v{{ parsePath $.path }}/{{ .Name }}">{{ .Name }}</a> {{ .Mtime }} {{ .Size }}
2019-02-26 09:43:18 +00:00
{{ end }}
</pre>
{{ template "foot.tmpl" . }}