{{define "repo_crumb"}}
<nav class="breadcrumb" aria-label="breadcrumbs">
<ul>
<li><a href="/repo/{{.Repo.Name}}/tree/{{.Branch}}">{{.Repo.Name}}</a></li>
{{$repoName := .Repo.Name}}
{{$branch := .Branch}}
{{$repoPath := .Path}}
{{$currentPath := ""}}
{{if .FileNames}}
{{range .FileNames}}
<li>
{{$currentPath = concat $currentPath .}}
<a href="/repo/{{$repoName}}/tree/{{$branch}}/{{$currentPath}}">
{{.}}
</a>
{{$currentPath = concat $currentPath "/"}}
</li>
{{end}}
{{end}}
<li class="is-active"><a href="#" aria-current="page">{{.CurrentObject}}</a></li>
</ul>
</nav>
{{end}}