~bigbes/sr-ht-compare

ref: 44cc9550c40713625fc5cb32c2d0651e1a9838f1 sr-ht-compare/web/templates/index.html -rw-r--r-- 1.7 KiB
44cc9550 — bigbes web: remove grey padding bands inside each diff file 30 days ago
                                                                                
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
48
49
50
51
52
53
54
{{define "content"}}
<div class="row">
  <div class="col-md-12">
    <h2>{{.SiteName}} <span class="text-danger">compare</span></h2>
    <p>
      Compare two references — branches, tags or commits — of any git repository
      on this instance, and review the diff file by file.
    </p>
  </div>
</div>

{{if .Data.LoggedIn}}
<div class="row">
  <div class="col-md-12">
    <h3>Your repositories</h3>
    {{if .Data.Repos}}
    <ul class="list-unstyled">
      {{range .Data.Repos}}
      <li>
        <a href="/~{{$.Username}}/{{.Name}}"><strong>~{{$.Username}}/{{.Name}}</strong></a>
        <span class="badge badge-secondary">{{.Visibility}}</span>
        {{if .Description}}<span class="text-muted">{{.Description}}</span>{{end}}
      </li>
      {{end}}
    </ul>
    {{else}}
    <p class="text-muted">You have no repositories yet.</p>
    {{end}}
  </div>
</div>
{{else}}
<div class="row">
  <div class="col-md-12">
    <p>
      <a href="{{.LoginURL}}" rel="nofollow">Log in</a> to list your own
      repositories, or jump directly to any repository below.
    </p>
    <form method="GET" action="/jump" class="form-inline">
      <div class="form-group">
        <label class="sr-only" for="owner">Owner</label>
        <input class="form-control" type="text" id="owner" name="owner"
               placeholder="~owner" autocomplete="off">
      </div>
      <div class="form-group">
        <label class="sr-only" for="repo">Repository</label>
        <input class="form-control" type="text" id="repo" name="repo"
               placeholder="repo" autocomplete="off">
      </div>
      <button class="btn btn-primary" type="submit">Go</button>
    </form>
  </div>
</div>
{{end}}
{{end}}