summaryrefslogtreecommitdiffstats
path: root/templates/commit.html
diff options
context:
space:
mode:
authorLibravatar Derek Stevens <nilix@nilfm.cc>2023-01-31 21:28:42 -0700
committerLibravatar Anirudh Oppiliappan <x@icyphox.sh>2023-02-05 15:10:25 +0530
commite782f36f196006f4fad6747811a5c883151e5102 (patch)
treeb63cdd5ab51d99229babc8dbec0b4efae85c4486 /templates/commit.html
parent7a512b1da60ca92203ec93ecce8b0debfe6da913 (diff)
downloadlegit-e782f36f196006f4fad6747811a5c883151e5102.tar.gz
legit-e782f36f196006f4fad6747811a5c883151e5102.tar.bz2
legit-e782f36f196006f4fad6747811a5c883151e5102.zip
add style tweaks
Signed-off-by: Derek Stevens <nilix@nilfm.cc>
Diffstat (limited to '')
-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>