jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
871 B

extends ../layout.pug
include ../mixins/post.pug
include ../mixins/overboardform.pug
include ../mixins/announcements.pug
block head
title #{__('Overboard Index')}
block content
.board-header
h1.board-title #{__('Overboard Index')}
h4.board-description #{__('Recently bumped threads from multiple boards')}
|
| (
a(href=`/catalog.html?${cacheQueryString}`) #{__('Catalog View')}
| )
include ../includes/stickynav.pug
if allowCustomOverboard === true
+overboardform('/overboard.html')
+announcements(true, true, false)
hr(size=1)
if threads.length === 0
p #{__('No posts.')}
for thread in threads
h4.no-m-p #{__('Thread from')} #[a(href=`/${thread.board}/index.html`) /#{thread.board}/]
.thread
+post(thread, true, false, false, false, true)
for post in thread.replies
+post(post, true, false, false, false, true)
hr(size=1)