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.

34 lines
760 B

extends ../layout.pug
include ../mixins/catalogtile.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') Index View
| )
br
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, false)
hr(size=1)