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 {{ end }}
12 </div>
13
14 <div id="repo-links">
15 <nav>
16 <a href="/{{ .RepoInfo.FullName }}">summary</a> ·
17 <a href="/{{ .RepoInfo.FullName }}/branches">branches</a> ·
18 <a href="/{{ .RepoInfo.FullName }}/tags">tags</a>
19 {{ if .RepoInfo.SettingsAllowed }}
20 · <a href="/{{ .RepoInfo.FullName }}/settings">settings</a>
21 {{ end }}
22 </nav>
23 <div>
24
25 {{ block "repoContent" . }} {{ end }}
26
27{{ end }}
28
29{{ define "layouts/repobase" }}
30 {{ template "layouts/base" . }}
31{{ end }}