all repos — legit @ e782f36f196006f4fad6747811a5c883151e5102

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 }}