this repo has no description
1{{define "title"}} {{ .RepoInfo.OwnerWithAt }} / {{ .RepoInfo.Name }} {{end}} 2 3{{define "content"}} 4 5<h1> 6{{ .RepoInfo.OwnerWithAt }} / {{ .RepoInfo.Name }} 7</h1> 8 <main> 9{{- if .IsEmpty }} 10this repo is empty 11{{ else }} 12 <div class="log"> 13 {{ range .Commits }} 14 <div> 15 <div><a href="/{{ $.RepoInfo.FullName }}/commit/{{ .Hash.String }}" class="commit-hash">{{ slice .Hash.String 0 8 }}</a></div> 16 <pre>{{ .Message }}</pre> 17 </div> 18 <div class="commit-info"> 19 {{ .Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a> 20 <div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> 21 </div> 22 <hr /> 23 {{ end }} 24 </div> 25{{- if .Readme }} 26 <article class="readme"> 27 {{- .Readme -}} 28 </article> 29{{- end -}} 30{{- end -}} 31 32 <div class="clone-url"> 33 <strong>clone</strong> 34 <pre> 35git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }} 36 </pre> 37 </div> 38 </main> 39{{end}} 40