leftypol_lainchan/templates/themes/overboards/overboards.php

28 lines
744 B
PHP
Raw Normal View History

<?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 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',
2021-06-10 09:16:14 +00:00
'exclude' => array('assembly', 'assembly_archive', 'gulag'),
'thread_limit' => $thread_limit,
),
array(
'title' => 'SFW Overboard',
'uri' => 'sfwoverboard',
'subtitle' => '30 most recently bumped threads from work-safe boards',
2021-06-10 09:16:14 +00:00
'exclude' => array('assembly', 'assembly_archive', 'gulag', 'b'),
'thread_limit' => $thread_limit,
),
);
?>