go-file-serve/templates/list.tmpl

13 lines
202 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 }}
<a href="/v{{ parsePath $.path }}/{{ .Name }}">{{ .Name }}</a>
{{ end }}
</pre>
{{ template "foot.tmpl" . }}