{{define "icon-file"}}{{end}}
{{define "icon-directory"}}{{end}}
{{define "tree"}}
{{range .Entries}}
{{if .IsDir}}
{{template "icon-directory" .}} {{.Name}}
{{template "tree" dict "Entries" .Children "RepoName" $.RepoName "CurrentRef" $.CurrentRef "CurrentPath" $.CurrentPath}}
{{else}}
{{template "icon-file" .}} {{.Name}}
{{end}}
{{end}}
{{end}}