all repos — legit @ 4207c35fb06ccd3c69104a525edfc131d597ca38

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 }}
{{ .Message }}
{{ .Author.Name }} {{ .Author.Email }}
{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
{{ end }}
{{ end }}