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, 3 insertions(+), 3 deletions(-)

changed files
M templates/commit.htmltemplates/commit.html
@@ -11,13 +11,13 @@ <pre>
{{- .commit.Message -}} </pre> <div class="commit-info"> - {{ .commit.Author.Name }} <span class="commit-email">{{ .commit.Author.Email}}</span> + {{ .commit.Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .commit.Author.Email}}</span> <div>{{ .commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> </div> <div> <strong>commit</strong> - <p><a href="/{{ .name }}/commit/{{ .commit.This }}"> + <p><a href="/{{ .name }}/commit/{{ .commit.This }}" class="commit-hash"> {{ .commit.This }} </a> </p>
@@ -26,7 +26,7 @@
{{ if .commit.Parent }} <div> <strong>parent</strong> - <p><a href="/{{ .name }}/commit/{{ .commit.Parent }}"> + <p><a href="/{{ .name }}/commit/{{ .commit.Parent }}" class="commit-hash"> {{ .commit.Parent }} </a></p> </div>