scripts/
static/
templates/
commit.html
2.0 KiB
discussion.html
1.7 KiB
discussion_new.html
801 B
discussions.html
959 B
error.html
266 B
home.html
2.8 KiB
index.html
506 B
layout.html
3.4 KiB
log.html
1.4 KiB
login.html
1.7 KiB
refs.html
1.2 KiB
.gitignore
30 B
.gitsigners
112 B
AGENTS.md
7.5 KiB
LICENSE
89 B
README.md
1.9 KiB
deploy
723 B
discuss.go
16.7 KiB
git.go
3.5 KiB
git_cli.go
16.0 KiB
git_http.go
1.9 KiB
go.mod
572 B
go.sum
1.9 KiB
handler.go
11.3 KiB
handler_test.go
69.0 KiB
main.go
5.2 KiB
template.go
8.9 KiB
watch
272 B
templates/refs.html
raw
| 1 | {{define "content"}} |
| 2 | {{if .Data.Branches}} |
| 3 | <table class="ref-list"> |
| 4 | <thead> |
| 5 | <tr> |
| 6 | <th>Branch</th> |
| 7 | <th>Hash</th> |
| 8 | <th class="desktop">Subject</th> |
| 9 | <th class="author desktop">Author</th> |
| 10 | <th>Idle</th> |
| 11 | </tr> |
| 12 | </thead> |
| 13 | <tbody> |
| 14 | {{range .Data.Branches}} |
| 15 | <tr> |
| 16 | <td><a href="{{$.BaseURL}}/{{$.Repo}}/log/{{.Name}}">{{.Name}}</a></td> |
| 17 | <td class="hash"><a href="{{$.BaseURL}}/{{$.Repo}}/commit/{{.Hash}}">{{.ShortHash}}</a></td> |
| 18 | <td class="subject desktop">{{.Subject}}</td> |
| 19 | <td class="author desktop">{{.Author}}</td> |
| 20 | <td class="date">{{timeAgo .Date}}</td> |
| 21 | </tr> |
| 22 | {{end}} |
| 23 | </tbody> |
| 24 | </table> |
| 25 | {{end}} |
| 26 | |
| 27 | {{if .Data.Tags}} |
| 28 | <table class="ref-list"> |
| 29 | <thead> |
| 30 | <tr> |
| 31 | <th>Tag</th> |
| 32 | <th>Hash</th> |
| 33 | <th class="desktop">Subject</th> |
| 34 | <th class="author desktop">Author</th> |
| 35 | <th>Idle</th> |
| 36 | </tr> |
| 37 | </thead> |
| 38 | <tbody> |
| 39 | {{range .Data.Tags}} |
| 40 | <tr> |
| 41 | <td><a href="{{$.BaseURL}}/{{$.Repo}}/commit/{{.Hash}}">{{.Name}}</a></td> |
| 42 | <td class="hash"><a href="{{$.BaseURL}}/{{$.Repo}}/commit/{{.Hash}}">{{.ShortHash}}</a></td> |
| 43 | <td class="subject desktop">{{.Subject}}</td> |
| 44 | <td class="author desktop">{{.Author}}</td> |
| 45 | <td class="date">{{timeAgo .Date}}</td> |
| 46 | </tr> |
| 47 | {{end}} |
| 48 | </tbody> |
| 49 | </table> |
| 50 | {{end}} |
| 51 | {{end}} |