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.

50 lines
1.4 KiB

extends ../layout.pug
include ../mixins/catalogtile.pug
include ../mixins/announcements.pug
block head
title Overboard Catalog
block content
.board-header.mb-5
h1.board-title Overboard Catalog
h4.board-description Recently bumped threads from all listed boards
|
| (
a(href=`/overboard.html?${cacheQueryString}`) Index View
| )
if allowCustomOverboard === true
.flexcenter.mv-10
form.form-post(action='/catalog.html' method='GET')
.col
.row
.label Include Default Boards
label.postform-style.ph-5
input(type='checkbox', name='include_default', value='true' checked=includeDefault)
.row
.label Add Boards
input(type='text' name='add' value=addBoards.join(',') placeholder='comma separated')
.row
.label Remove Boards
input(type='text' name='rem' value=removeBoards.join(',') placeholder='comma separated')
input(type='submit', value='Filter')
+announcements()
include ../includes/stickynav.pug
.wrapbar
.pages.jsonly
input#catalogfilter(type='text' placeholder='Filter')
select.ml-5.right#catalogsort
option(value="" disabled selected hidden) Sort by
option(value="bump") Bump order
option(value="date") Creation date
option(value="replies") Reply count
hr(size=1)
if threads.length === 0
p No posts.
else
.catalog
for thread, i in threads
+catalogtile(thread, i, true)
hr(size=1)