@ d75a654d61ba5dd1809a0bfb15f0eac2daa7ee4a | history
{{define "title"}}{{.Repo}}/{{.Base}}{{end}}
{{define "content"}}
<h1>{{.Repo}}/{{.Base}}</h1>
<p><a href="/{{if and (eq .Dir ".") (eq .Base "")}}{{else}}{{.Repo}}/{{.Dir}}{{end}}"><-- back</a></p>
<ul>
{{range .Entries}}
<li>
{{if .IsDir}}📁{{else}}📄{{end}}
<a href="{{.Path}}">{{.Name}}</a>
</li>
{{end}}
</ul>
{{end}}
{{define "tree"}}
{{template "base" .}}
{{end}}