this repo has no description
1{{define "title"}} {{ .RepoInfo.FullName }} {{ end}}
2
3{{ define "content" }}
4
5<div id="repo-header">
6 <h1>{{ .RepoInfo.FullName }}</h1>
7 {{ if .RepoInfo.Description }}
8 <h3 class="desc">{{ .RepoInfo.Description }}</h3>
9 {{ else }}
10 <em>this repo has no description</em>
11</div>
12
13{{ with .IsEmpty }}
14{{ else }}
15<div id="repo-links">
16 <nav>
17 <a href="/{{ .RepoInfo.FullName }}">summary</a> ·
18 <a href="/{{ .RepoInfo.FullName }}/branches">branches</a> ·
19 <a href="/{{ .RepoInfo.FullName }}/tags">tags</a>
20 </nav>
21<div>
22{{ end }}
23
24{{ end }}
25
26{{ block "repoContent" . }} {{ end }}
27
28{{ end }}
29
30{{ define "layouts/repobase" }}
31
32{{ template "layouts/base" . }}
33
34{{ end }}