this repo has no description
1{{ define "title" }} 2 branches | {{ .RepoInfo.OwnerWithAt }} / 3 {{ .RepoInfo.Name }} 4{{ end }} 5 6{{ define "content" }} 7 {{ $name := .RepoInfo.Name }} 8 <h3>branches</h3> 9 <div class="refs"> 10 {{ range .Branches }} 11 <div> 12 <strong>{{ .Name }}</strong> 13 <a href="/{{ $name }}/tree/{{ .Name }}/">browse</a> 14 <a href="/{{ $name }}/log/{{ .Name }}">log</a> 15 </div> 16 {{ end }} 17 </div> 18{{ end }}