mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-03-26 09:35:50 +00:00
29 lines
667 B
HTML
29 lines
667 B
HTML
{{define "digest"}}
|
|
|
|
<dl>
|
|
|
|
<p>Activity a year ago for <a href="https://github.com/{{.User.Login}}" title={{.User.Name}}><img src={{.User.AvatarURL}} width="20" height="20" border="0">{{.User.Login}}</a>.</p>
|
|
|
|
{{range $index, $repoDigest := .RepoDigests}}
|
|
<h2>
|
|
<a href="https://github.com/{{.Repo.FullName}}">
|
|
{{.Repo.FullName}}
|
|
</a>
|
|
</h2>
|
|
|
|
<div>
|
|
{{range .Commits }}
|
|
<div>
|
|
<pre>{{.Commit.Message}}</pre>
|
|
<div>
|
|
<a href="https://github.com/{{$repoDigest.Repo.FullName}}/commit/{{.SHA}}">{{.SHA}}</a>
|
|
<i>{{.Commit.Author.Date}}</i>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
</dl>
|
|
|
|
{{end}}
|