summaryrefslogblamecommitdiffstats
path: root/templates/commit.html
blob: f7a36b4bb30b8b4f41ac9d09f75b7ef69cb8051c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                    
                                                                                                                                                  





























                                                                      


                                                              








                         
{{ define "commit" }}
<html>
{{ template "head" . }}

  <header>
    <h1>{{ .meta.Title }}</h1>
    <h2>{{ .meta.Description }}</h2>
  </header>
  <body>
    {{ template "nav" . }}
    <main>
      <section>
        <p>author: {{ .commit.Author.Name }} <{{ .commit.Author.Email}}> on {{ .commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</p>
        <p>commit: <a href="/{{ .name }}/commit/{{ .commit.This }}">
          {{ .commit.This }}
        </a>
        </p>
        <p>parent: <a href="/{{ .name }}/commit/{{ .commit.Parent }}">
          {{ .commit.Parent }}
        </a>
        </p>
        <p>{{ .stat.FilesChanged }} files changed,
          {{ .stat.Insertions }} insertions(+),
          {{ .stat.Deletions }} deletions(-)
        </p>
      </section>
      <section>
        {{ range .diff }}
          {{ if .Name.Old }}
          <p>{{ .Name.Old }}{{ .Name.New }}</p>
          {{ else }}
          <p>{{.Name.New }}</p>
          {{- end -}}
            <pre>
            {{- range .TextFragments -}}
            <p>{{- .Header -}}</p>
              {{- range .Lines -}}
                {{- if eq .Op.String "+" -}}
                <span style="color: green">{{ .String }}</span>
                {{- end -}}
                {{- if eq .Op.String "-" -}}
                <span style="color: red">{{ .String }}</span>
                {{- end -}}
                {{- if eq .Op.String " " -}}
                <span style="color: gray">{{ .String }}</span>
                {{- end -}}
              {{- end -}}
            {{- end -}}
            </pre>
        {{ end }}
      </section>
    </main>
  </body>
</html>
{{ end }}