updated index.php

This commit is contained in:
hayden 2019-07-04 18:53:10 -05:00
parent fe66c7554e
commit d938bbd2dd
3 changed files with 4 additions and 34 deletions

View File

@ -1,16 +0,0 @@
<?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);
?>

View File

@ -24,13 +24,13 @@ function display_header($title = "~chan") {
<div class="box">
<span>
<b>boards:</b> (
<a href="/b/">b</a>
<a href="/boards/b/">b</a>
/
<a href="/g/">g</a>
<a href="/boards/g/">g</a>
/
<a href="/m/">m</a>
<a href="/boards/m/">m</a>
/
<a href="/v/">v</a>
<a href="/boards/v/">v</a>
)
</span>
<span>

View File

@ -1,14 +0,0 @@
<?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);
?>