mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-05-21 05:40:47 +00:00
30 lines
436 B
PHP
30 lines
436 B
PHP
<?php
|
|
|
|
/*
|
|
* Credits Page for ScummVM
|
|
*
|
|
*/
|
|
|
|
// set this for position of this file relative
|
|
$file_root = ".";
|
|
|
|
// load libraries
|
|
require($file_root."/include/"."incl.php");
|
|
|
|
// start of html
|
|
html_header("ScummVM :: Credits");
|
|
sidebar_start();
|
|
|
|
//display welcome table
|
|
echo html_round_frame_start("Credits","");
|
|
|
|
include $file_root."/credits.inc";
|
|
|
|
echo html_round_frame_end(" ");
|
|
|
|
// end of html
|
|
sidebar_end();
|
|
html_footer();
|
|
|
|
?>
|