forked from leftypol/leftypol
Allow arbritary overboard creation, make catalog compatible
This commit is contained in:
parent
8daf9d79ef
commit
4e0e4f720e
7 changed files with 467 additions and 23 deletions
26
templates/themes/overboards/overboards.php
Normal file
26
templates/themes/overboards/overboards.php
Normal 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,
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue