2019-11-29 15:08:18 -08:00
{{template "page_header.html" .}}
2018-10-22 22:02:06 -07:00
< header >
2018-11-25 14:16:22 -08:00
< h1 id = "board-title" > /{{$.board.Dir}}/ - {{$.board.Title}}< / h1 >
2022-12-24 23:35:08 -08:00
< div id = "board-subtitle" >
{{$.board.Subtitle}}< br / >
2025-01-07 12:24:11 +01:00
< a href = "{{webPathDir $.board.Dir}}" > Return< / a > | < a href = "#" onClick = "window.location.reload(); return false;" > Update< / a > | < a href = "{{webPath $.board.Dir " / catalog . html " } } " > Catalog< / a > | < a href = "#footer" > Bottom< / a >
2022-12-24 23:35:08 -08:00
< / div >
2019-12-06 20:03:37 -08:00
< / header > < hr / >
{{template "postbox.html" .}}< hr / >
2023-01-05 23:59:55 -08:00
< form action = "{{webPath " / util " } } " method = "POST" id = "main-form" >
2025-04-21 17:10:42 -07:00
< div class = "thread {{if $.op.SpoilerThread}}spoiler-thread{{end}}" id = "{{$.op.ID}}" >
2022-01-27 21:02:37 -08:00
{{$global := .}}
2023-02-03 10:31:47 -08:00
{{- template "post.html" map "global" $global "board" .board "post" .op "thread" $.thread -}}
2019-12-06 20:03:37 -08:00
{{range $reply_num,$reply := .posts -}}
2022-01-27 21:02:37 -08:00
{{- template "post.html" map "global" $global "board" $global.board "post" $reply -}}
{{- end -}}
2019-12-06 20:03:37 -08:00
< / div > < hr / >
2013-05-29 12:15:44 -07:00
< div id = "right-bottom-content" >
< div id = "report-delbox" >
2018-04-06 01:03:57 -07:00
< input type = "hidden" name = "board" value = "{{.board.Dir}}" / >
< input type = "hidden" name = "boardid" value = "{{.board.ID}}" / >
2016-01-04 20:53:56 -08:00
< label > [< input type = "checkbox" name = "fileonly" / > File only]< / label > < input type = "password" size = "10" name = "password" id = "delete-password" / > < input type = "submit" name = "delete_btn" value = "Delete" onclick = "return confirm('Are you sure you want to delete these posts?')" / > < br / >
2022-09-23 15:50:18 -07:00
Report reason: < input type = "text" size = "10" name = "reason" id = "reason" / > < input type = "submit" name = "report_btn" value = "Report" / > < br / >
< input type = "submit" name = "edit_btn" value = "Edit post" / >
< input type = "submit" name = "move_btn" value = "Move thread" / >
2013-05-29 12:15:44 -07:00
< / div >
< / div >
2015-12-24 23:26:13 -08:00
< / form >
< div id = "left-bottom-content" >
2023-12-07 12:11:58 -08:00
< a href = "{{webPathDir .board.Dir}}" > Return< / a > | < a href = "#" > Scroll to top< / a > < br / > < br / >
2016-01-04 20:53:56 -08:00
< span id = "boardmenu-bottom" >
2023-12-07 12:11:58 -08:00
[< a href = "{{webPathDir " / " } } " > home< / a > ]
2019-12-06 20:03:37 -08:00
[{{range $i, $boardlink := .boards -}}
2023-12-07 12:11:58 -08:00
{{if gt $i 0}}/{{end -}} < a href = "{{webPathDir $boardlink.Dir}}" > {{$boardlink.Dir}}< / a >
2019-12-06 20:03:37 -08:00
{{- end}}]
2016-01-04 20:53:56 -08:00
< / span >
< / div >
2019-11-29 15:08:18 -08:00
{{template "page_footer.html" .}}