extends ../layout.pug include ../mixins/catalogtile.pug include ../mixins/overboardform.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 +overboardform('/catalog.html') +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)