diff options
author | Derek Stevens <nilix@nilfm.cc> | 2023-01-31 21:28:42 -0700 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2023-02-05 15:10:25 +0530 |
commit | e782f36f196006f4fad6747811a5c883151e5102 (patch) | |
tree | b63cdd5ab51d99229babc8dbec0b4efae85c4486 /templates/commit.html | |
parent | 7a512b1da60ca92203ec93ecce8b0debfe6da913 (diff) | |
download | legit-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.html | 6 |
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> |