diff options
author | Gil Poiares-Oliveira <gil@poiares-oliveira.com> | 2023-05-15 09:33:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-15 11:33:11 +0300 |
commit | 8f9e7f14ff7ef0fef4a4e828e49ee347c72b94d2 (patch) | |
tree | 0216cf17a02ea8b43da0924e4f1585f0bf9be93a /templates | |
parent | 0191fc887ee9e211e0c4dced100bed166f71d6cb (diff) | |
download | legit-8f9e7f14ff7ef0fef4a4e828e49ee347c72b94d2.tar.gz legit-8f9e7f14ff7ef0fef4a4e828e49ee347c72b94d2.tar.bz2 legit-8f9e7f14ff7ef0fef4a4e828e49ee347c72b94d2.zip |
fix broken mailto: link in commit template
Diffstat (limited to 'templates')
-rw-r--r-- | templates/commit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/commit.html b/templates/commit.html index d03611d..c1def17 100644 --- a/templates/commit.html +++ b/templates/commit.html @@ -11,7 +11,7 @@ {{- .commit.Message -}} </pre> <div class="commit-info"> - {{ .commit.Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .commit.Author.Email}}</a> + {{ .commit.Author.Name }} <a href="mailto:{{ .commit.Author.Email }}" class="commit-email">{{ .commit.Author.Email}}</a> <div>{{ .commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> </div> |