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.
 
 
 
 
 

28 lines
587 B

extends ../layout.pug
include ../mixins/catalogtile.pug
include ../mixins/boardnav.pug
include ../mixins/boardheader.pug
block head
script(src='/js/all.js')
title /#{board._id}/ - Catalog
block content
+boardheader('Catalog')
br
include ../includes/postform.pug
br
include ../includes/announcements.pug
include ../includes/stickynav.pug
nav.pages
+boardnav('catalog', true, false)
hr(size=1)
if threads.length === 0
p No posts.
else
.catalog
for thread, i in threads
+catalogtile(board, thread, i+1)
hr(size=1)
nav.pages
+boardnav('catalog', true, false)