smithy

ref: v0.2.0

include/log.html


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{{ template "header" . }}

{{ $repo := .RepoName }}

<h1>{{ .RepoName }}</h1>

<nav class="navbar navbar-expand navbar-light bg-light">
  <div class="collapse navbar-collapse" id="navbarNav">
    <ul class="navbar-nav">
      <li class="nav-item">
        <a class="nav-link" href="/{{ $repo }}">About</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="/{{ $repo }}/refs">Refs</a>
      </li>
      <li class="nav-item active">
        <a class="nav-link" href="/{{ $repo }}/log">Log</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="/{{ $repo }}/tree">Tree</a>
      </li>
    </ul>
  </div>
</nav>

ref: {{ .RefName }}

<table class="table">
    <thead>
        <th>Sha</th>
        <th>Commit date</th>
        <th>Commit message</th>
        <th>Author</th>
    </thead>
    <tbody>
        {{ range .Commits }}
            <tr>
                <td><a href="/{{ $repo }}/commit/{{ .Commit.Hash }}">{{ .ShortHash }}</a></td>
                <td>{{ .FormattedDate }}</td>
                <td>{{ .Subject }}</td>
                <td>{{ .Commit.Author.Name }}</td>
            </tr>
        {{ end }}
    </tbody>
</table>

{{ template "footer" }}