all repos — legit @ 5ea7cae973e8329ae768c35bda41e656f974815d

web frontend for git, written in go

templates/log.html (view raw)

{{ define "log" }}

{{ template "head" . }}

  {{ template "repoheader" . }}
  
    {{ template "nav" . }}
    
      {{ $repo := .name }}
      
{{ range .commits }}
{{ slice .Hash.String 0 8 }}
{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
{{ .Message }}
{{ .Author.Name }} {{ .Author.Email }}
{{ end }}
{{ end }}