home.html

 1{{define "content"}}
 2<section aria-labelledby="repositories-heading">
 3  <h2 id="repositories-heading">Repositories</h2>
 4  
 5  {{if .Repositories}}
 6  {{range .Repositories}}
 7  <article>
 8    <hgroup>
 9      <h3>
10        <a href="/{{.Name}}">
11          {{if .ProjectName}}{{.ProjectName}}{{else}}{{.Name}}{{end}}
12          {{if .IsPrivate}} 🔒{{end}}
13        </a>
14      </h3>
15      {{if .Description}}
16      <p>{{.Description}}</p>
17      {{end}}
18    </hgroup>
19    
20    <footer>
21      <small>
22        {{if .CloneURL}}
23        <code>git clone {{.CloneURL}}</code>
24        <br>
25        {{end}}
26        {{if .UpdatedAt}}
27        Updated {{.UpdatedAt}}
28        {{end}}
29      </small>
30    </footer>
31  </article>
32  {{end}}
33
34  {{if or .HasPrevPage .HasNextPage}}
35  <nav aria-label="Pagination">
36    <p>Page {{.Page}} of {{.TotalPages}}</p>
37    <ul>
38      {{if .HasPrevPage}}
39      <li>
40        <a href="/?page={{dec .Page}}" rel="prev"
41          >Previous page</a
42        >
43      </li>
44      {{end}}
45      {{if .HasNextPage}}
46      <li>
47        <a href="/?page={{inc .Page}}" rel="next"
48          >Next page</a
49        >
50      </li>
51      {{end}}
52    </ul>
53  </nav>
54  {{end}}
55  {{else}}
56  <p>No public repositories available.</p>
57  {{end}}
58</section>
59{{end}}