all repos — elgit @ 3e6a720154b70a9882af14399548e494b1d0089f

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

git, templates: diff view

commit

3e6a720154b70a9882af14399548e494b1d0089f

parent

5091695e75b2db30b8926d8aa17164c84031bc77

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

changed files
M templates/log.htmltemplates/log.html
@@ -9,7 +9,7 @@ </header>
<body> {{ template "nav" . }} <main> - {{ $repo := .repo }} + {{ $repo := .name }} <div class="log"> {{ range .commits }} <div>
@@ -17,7 +17,7 @@ <div><a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}</a></div>
<div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> <pre>{{ .Message }}</pre> </div> - <div class="commit-info">{{ .Author.Name }} <span style="color: var(--gray);">{{ .Author.Email }}</span></div> + <div class="commit-info">{{ .Author.Name }} <span class="commit-email">{{ .Author.Email }}</span></div> {{ end }} </div> </main>