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 <div class="log">
10 {{ range .Commits }}
11 <div>
12 <div><a href="/{{ $.RepoInfo.FullName }}/commit/{{ .Hash.String }}" class="commit-hash">{{ slice .Hash.String 0 8 }}</a></div>
13 <pre>{{ .Message }}</pre>
14 </div>
15 <div class="commit-info">
16 {{ .Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a>
17 <div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
18 </div>
19 <hr />
20 {{ end }}
21 </div>
22{{- if .Readme }}
23 <article class="readme">
24 {{- .Readme -}}
25 </article>
26{{- end -}}
27
28 <div class="clone-url">
29 <strong>clone</strong>
30 <pre>
31git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
32 </pre>
33 </div>
34 </main>
35{{end}}
36