all repos — elgit @ e782f36f196006f4fad6747811a5c883151e5102

fork of legit: web frontend for git, written in go

add style tweaks Signed-off-by: Derek Stevens <nilix@nilfm.cc>

Derek Stevens
commit

e782f36f196006f4fad6747811a5c883151e5102

parent

7a512b1da60ca92203ec93ecce8b0debfe6da913

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M templates/repo.htmltemplates/repo.html
@@ -16,11 +16,11 @@ {{ $repo := .name }}
<div class="log"> {{ range .commits }} <div> - <div><a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}</a></div> + <div><a href="/{{ $repo }}/commit/{{ .Hash.String }}" class="commit-hash">{{ slice .Hash.String 0 8 }}</a></div> <pre>{{ .Message }}</pre> </div> <div class="commit-info"> - {{ .Author.Name }} <span class="commit-email">{{ .Author.Email }}</span> + {{ .Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a> <div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> </div> {{ end }}