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.

39 lines
1.0 KiB

extends ../layout.pug
block head
script(src='/js/theme.js')
title #{meta.siteName}
block content
h1.board-title Board List
if boards && boards.length > 0
h4.board-description Local Boards
include ../includes/boardtable.pug
each board in boards
tr
td
if board.settings.sfw
span.user-id.sfw SFW
|
a(href=`/${board._id}/index.html`) /#{board._id}/ - #{board.settings.name}
td #{board.settings.description}
td #{board.pph}
td #{board.ips}
td #{board.sequence_value-1}
if webringBoards && webringBoards.length > 0
h4.board-description Webring Boards
include ../includes/boardtable.pug
each board in webringBoards
tr
td
if !board.nsfw
span.user-id.sfw SFW
|
a(href=board.path) #{board.siteName} /#{board.uri}/ - #{board.title}
td #{board.subtitle || '-'}
td #{board.postsPerHour || '-'}
td #{board.uniqueUsers || '-'}
td #{board.totalPosts || '-'}
nav.pages.text-center
include ../includes/boardlistpages.pug