forked from leftypol/leftypol
Revert "Revert "Add SFW overboard theme""
This reverts commit b11487a8a0
.
This commit is contained in:
parent
dd425e3ef0
commit
959414ca46
8 changed files with 478 additions and 23 deletions
34
templates/themes/overboards/overboards.php
Normal file
34
templates/themes/overboards/overboards.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?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'),
|
||||
'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', 'meta'),
|
||||
'thread_limit' => $thread_limit,
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue