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