diff options
Diffstat (limited to 'templates/log.html')
-rw-r--r-- | templates/log.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/log.html b/templates/log.html index c4ee9c3..4a0292c 100644 --- a/templates/log.html +++ b/templates/log.html @@ -9,7 +9,7 @@ <body> {{ template "nav" . }} <main> - {{ $repo := .repo }} + {{ $repo := .name }} <div class="log"> {{ range .commits }} <div> @@ -17,7 +17,7 @@ <div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div> <pre>{{ .Message }}</pre> </div> - <div class="commit-info">{{ .Author.Name }} <span style="color: var(--gray);">{{ .Author.Email }}</span></div> + <div class="commit-info">{{ .Author.Name }} <span class="commit-email">{{ .Author.Email }}</span></div> {{ end }} </div> </main> |