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 {{ end }}
20 </div>
21{{- if .Readme }}
22 <article class="readme">
23 {{- .Readme -}}
24 </article>
25{{- end -}}
26
27 <div class="clone-url">
28 <strong>clone</strong>
29 <pre>
30git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
31 </pre>
32 </div>
33 </main>
34{{end}}
35