{{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}}