Make threads openable from catalog

This commit is contained in:
Dominic Ferrando
2025-04-18 11:21:47 -04:00
parent e53a65d437
commit a809b3c403
8 changed files with 134 additions and 68 deletions
+12
View File
@@ -0,0 +1,12 @@
package views
import (
"github.com/dominicf2001/comfychan/internal/database"
"github.com/dominicf2001/comfychan/web/views/shared"
)
templ Thread(board database.Board, thread database.Thread, posts []database.Post) {
@shared.Layout() {
@BoardHeader(board)
}
}