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/discussions.html
raw
| 1 | {{define "content"}} |
| 2 | {{$dpath := discussionPath .BaseURL .Repo}} |
| 3 | {{if .Handle}} |
| 4 | <div class="discussions-header"> |
| 5 | <div class="discussions-actions"> |
| 6 | <a href="{{$dpath}}/new" class="btn">New discussion</a> |
| 7 | </div> |
| 8 | </div> |
| 9 | {{end}} |
| 10 | |
| 11 | {{if .Data.IsEmpty}} |
| 12 | <p class="empty">No discussions yet.</p> |
| 13 | {{else}} |
| 14 | <table class="discussion-list"> |
| 15 | <thead> |
| 16 | <tr> |
| 17 | <th>Topic</th> |
| 18 | <th class="desktop">Author</th> |
| 19 | <th class="desktop">Replies</th> |
| 20 | <th>Active</th> |
| 21 | </tr> |
| 22 | </thead> |
| 23 | <tbody> |
| 24 | {{range .Data.Discussions}} |
| 25 | <tr> |
| 26 | <td class="discussion-title"><a href="{{$dpath}}/{{.ID}}">{{.Title}}</a></td> |
| 27 | <td class="author desktop">{{if .Avatar}}<img class="avatar" src="{{.Avatar}}" alt="" width="16" height="16"> {{end}}<a href="https://bsky.app/profile/{{.Author}}">{{.Author}}</a></td> |
| 28 | <td class="discussion-replies desktop">{{.ReplyCount}}</td> |
| 29 | <td class="date">{{timeAgo .LastActive}}</td> |
| 30 | </tr> |
| 31 | {{end}} |
| 32 | </tbody> |
| 33 | </table> |
| 34 | {{end}} |
| 35 | {{end}} |