go-file-serve/templates/list.tmpl

13 lines
202 B
Cheetah

{{ 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" . }}