Allow arbritary overboard creation, make catalog compatible

This commit is contained in:
discomrade 2021-06-01 02:39:39 -02:00
parent 8daf9d79ef
commit 4e0e4f720e
7 changed files with 467 additions and 23 deletions

View file

@ -0,0 +1,26 @@
<?php
/* When adding a new board, rebuild this theme. If necessary, reconfigure the catalog theme.
*
*/
$thread_limit = 15;
// Define list of overboards
$overboards_config = array(
array(
'title' => 'Overboard',
'uri' => 'overboard',
'subtitle' => 'something something overboard',
'exclude' => '',
'thread_limit' => $thread_limit,
),
array(
'title' => 'SFW Overboard',
'uri' => 'sfwoverboard',
'subtitle' => 'something something sfw overboard',
'exclude' => 'b',
'thread_limit' => $thread_limit,
),
);
?>