summaryrefslogtreecommitdiffstats
path: root/templates/log.html
diff options
context:
space:
mode:
authorLibravatar Anirudh Oppiliappan <x@icyphox.sh>2022-12-17 21:33:04 +0530
committerLibravatar Anirudh Oppiliappan <x@icyphox.sh>2022-12-17 21:33:04 +0530
commit5091695e75b2db30b8926d8aa17164c84031bc77 (patch)
tree40cd73e213e935634229fdadb701badd939846fd /templates/log.html
parent4eaaf451295ce9b541769d1322543f2d982ef5b0 (diff)
downloadlegit-5091695e75b2db30b8926d8aa17164c84031bc77.tar.gz
legit-5091695e75b2db30b8926d8aa17164c84031bc77.tar.bz2
legit-5091695e75b2db30b8926d8aa17164c84031bc77.zip
templates: repo and log
Diffstat (limited to 'templates/log.html')
-rw-r--r--templates/log.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/templates/log.html b/templates/log.html
index de7b200..c4ee9c3 100644
--- a/templates/log.html
+++ b/templates/log.html
@@ -9,13 +9,17 @@
<body>
{{ template "nav" . }}
<main>
- {{ $repo := .name }}
- {{ range .commits }}
- <p><a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}<a>
- &mdash; {{ .Author.Name }}
- <span title="{{ .Author.When }}">{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</span></p>
- <p><pre>{{ .Message }}</pre></p>
- {{ end }}
+ {{ $repo := .repo }}
+ <div class="log">
+ {{ range .commits }}
+ <div>
+ <div><a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}</a></div>
+ <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>
+ {{ end }}
+ </div>
</main>
</body>
</html>