all repos — legit @ e0e4c1ebb6e92077cbc7bbfd51c4ceb8d09e0013

web frontend for git

templates/commit.html (view raw)

 1{{ define "commit" }}
 2<html>
 3{{ template "head" . }}
 4
 5  {{ template "repoheader" . }}
 6  <body>
 7    {{ template "nav" . }}
 8    <main>
 9      <section class="commit">
10        <pre>
11          {{- .commit.Message -}}
12        </pre>
13        <div class="commit-info">
14        {{ .commit.Author.Name }} <span class="commit-email">{{ .commit.Author.Email}}</span>
15        <div>{{ .commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
16        </div>
17
18        <p>commit: <a href="/{{ .name }}/commit/{{ .commit.This }}">
19          {{ .commit.This }}
20        </a>
21        </p>
22        {{ if .commit.Parent }}
23        <p>parent: <a href="/{{ .name }}/commit/{{ .commit.Parent }}">
24          {{ .commit.Parent }}
25        </a>
26        {{ end }}
27        </p>
28        <div class="diff-stat">
29          <div>
30          {{ .stat.FilesChanged }} files changed,
31          {{ .stat.Insertions }} insertions(+),
32          {{ .stat.Deletions }} deletions(-)
33          </div>
34          <div>
35            <br>
36            <p>jump to:</p>
37            {{ range .diff }}
38            <ul>
39            <li><a href="#{{ .Name.New }}">{{ .Name.New }}</a></li>
40            </ul>
41            {{ end }}
42          </div>
43        </div>
44      </section>
45      <section>
46        {{ $repo := .name }}
47        {{ $this := .commit.This }}
48        {{ range .diff }}
49          <div class="diff">
50          <div id="{{ .Name.New }}">
51          {{ if .Name.Old }}
52          <a href="/{{ $repo }}/blob/{{ $this }}/{{ .Name.Old }}">{{ .Name.Old }}</a> &#8594; 
53          <a href="/{{ $repo }}/blob/{{ $this }}/{{ .Name.New }}">{{ .Name.New }}</a>
54          {{ else }}
55          <a href="/{{ $repo }}/blob/{{ $this }}/{{ .Name.New }}">{{ .Name.New }}</a>
56          {{- end -}}
57          </div>
58          {{ if .IsBinary }}
59          <p>Not showing binary file.</p>
60          {{ else }}
61            <pre>
62            {{- range .TextFragments -}}
63            <p>{{- .Header -}}</p>
64            {{- range .Lines -}}
65              {{- if eq .Op.String "+" -}}
66              <span class="diff-add">{{ .String }}</span>
67              {{- end -}}
68              {{- if eq .Op.String "-" -}}
69              <span class="diff-del">{{ .String }}</span>
70              {{- end -}}
71              {{- if eq .Op.String " " -}}
72              <span class="diff-noop">{{ .String }}</span>
73              {{- end -}}
74            {{- end -}}
75            {{- end -}}
76          {{- end -}}
77            </pre>
78          </div>
79        {{ end }}
80      </section>
81    </main>
82  </body>
83</html>
84{{ end }}