Source code of Leftypol imageboard
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.
 
 
 
 
 

34 lines
1.0 KiB

<?php
/*
* When adding a new board, rebuild this theme. If necessary, reconfigure the catalog theme.
* Exclude list is a PHP array e.g. 'exclude' => array('b', 'games', 'music')
*/
$thread_limit = 30;
// Define list of overboards
$overboards_config = array(
array(
'title' => 'Overboard',
'uri' => 'overboard',
'subtitle' => '30 most recently bumped threads',
'exclude' => array('assembly', 'assembly_archive', 'gulag'),
'thread_limit' => $thread_limit,
),
array(
'title' => 'SFW Overboard',
'uri' => 'sfw',
'subtitle' => '30 most recently bumped threads from work-safe boards',
'exclude' => array('assembly', 'assembly_archive', 'gulag', 'b', 'siberia'),
'thread_limit' => $thread_limit,
),
array(
'title' => 'Alternate Overboard',
'uri' => 'alt',
'subtitle' => '30 most recently bumped threads from smaller interest boards',
'exclude' => array('assembly', 'assembly_archive', 'gulag', 'leftypol', 'b', 'siberia', 'meta'),
'thread_limit' => $thread_limit,
),
);
?>