moved the boards to their own folder for the sake of the filesystem looking cleaner

This commit is contained in:
hayden 2019-07-04 18:48:37 -05:00
parent e924680b84
commit fe66c7554e
2 changed files with 30 additions and 0 deletions

16
boards/b/index.php Normal file
View File

@ -0,0 +1,16 @@
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
require_once($path . '/core/board.php');
$settings = array(
'title' => 'random',
'code' => 'b',
'splash' => array(
'wacky',
'totally tubular'
)
);
display_board($settings);
?>

14
boards/mc/index.php Normal file
View File

@ -0,0 +1,14 @@
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
require_once($path . '/core/board.php');
$settings = array(
'title' => 'minecraft',
'code' => 'mc',
'splash' => array(
'block by block'
)
);
display_board($settings);
?>