summaryrefslogtreecommitdiffstats
path: root/templates/commit.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/commit.html')
-rw-r--r--templates/commit.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/commit.html b/templates/commit.html
index 2f05b46..4a01b77 100644
--- a/templates/commit.html
+++ b/templates/commit.html
@@ -11,13 +11,13 @@
{{- .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>