gtx


 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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>{{.Title}}</title>
  </head>
  <body>
    <header>
      <h1><a href="./">{{.Title}}</a></h1>
    </header>
    <main>
      <hr>
      <h2>Repository</h2>
      <p>Clone this repository using: <code>git clone {{.Link}}</code></p>
      <h2>Branches</h2>
      {{- range $i, $name := .Branches}}
      <dl>
        <dt>{{.}}</dt>
      </dl>
      {{- else}}
      <p>&hellip;</p>
      {{- end}}
      <hr>
    </main>
    <footer>
      <p>Generated by <a href="http://hssl.cs.jhu.edu/~neal/git2html">git2html</a> &rsaquo;</p>
    </footer>
  </body>
</html>