mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-29 18:59:21 +02:00
19 lines
328 B
PHP
19 lines
328 B
PHP
<?php
|
|
switch ($_GET['page'])
|
|
{
|
|
case 'blank':
|
|
include 'layout/sub/blank.php';
|
|
break;
|
|
|
|
case 'houses':
|
|
include 'layout/sub/houses.php';
|
|
break;
|
|
|
|
case 'bomberman':
|
|
include 'layout/sub/bomberman.php';
|
|
break;
|
|
|
|
default:
|
|
echo '<h2>Sub page not recognized.</h2><p>The sub page you requested is not recognized.</p>';
|
|
}
|
|
?>
|