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