2021-06-01 04:39:39 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-01 22:44:27 +00:00
|
|
|
/*
|
|
|
|
* When adding a new board, rebuild this theme. If necessary, reconfigure the catalog theme.
|
|
|
|
* Exclude list is space-separated (e.g. 'exclude' => 'b games music' )
|
2021-06-01 04:39:39 +00:00
|
|
|
*/
|
2021-06-10 07:25:23 +00:00
|
|
|
$thread_limit = 30;
|
2021-06-01 04:39:39 +00:00
|
|
|
|
|
|
|
// Define list of overboards
|
|
|
|
$overboards_config = array(
|
|
|
|
array(
|
|
|
|
'title' => 'Overboard',
|
|
|
|
'uri' => 'overboard',
|
2021-06-10 07:25:23 +00:00
|
|
|
'subtitle' => '30 most recently bumped threads',
|
2021-06-01 04:39:39 +00:00
|
|
|
'exclude' => '',
|
|
|
|
'thread_limit' => $thread_limit,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => 'SFW Overboard',
|
|
|
|
'uri' => 'sfwoverboard',
|
2021-06-10 07:25:23 +00:00
|
|
|
'subtitle' => '30 most recently bumped threads from work-safe boards',
|
2021-06-01 04:39:39 +00:00
|
|
|
'exclude' => 'b',
|
|
|
|
'thread_limit' => $thread_limit,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
?>
|