mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-05-21 05:40:47 +00:00
36 lines
612 B
PHP
36 lines
612 B
PHP
<?php
|
|
|
|
/*
|
|
* FAQ Page
|
|
*
|
|
*/
|
|
|
|
// set this for position of this file relative
|
|
$file_root = ".";
|
|
|
|
// load libraries
|
|
require($file_root."/include/"."incl.php");
|
|
|
|
// start of html
|
|
html_header("ScummVM :: FAQ", '<link href="faq.css" rel="stylesheet" type="text/css">');
|
|
sidebar_start();
|
|
|
|
//display welcome table
|
|
echo html_round_frame_start("FAQ :: Frequently Asked Questions","");
|
|
|
|
?>
|
|
<h1>
|
|
FAQ<br>
|
|
<span class="caption">last updated: <?php echo date("F d, Y",getlastmod()); ?></span>
|
|
</h1>
|
|
<?php
|
|
include $file_root."/faq.inc";
|
|
|
|
echo html_round_frame_end(" ");
|
|
|
|
// end of html
|
|
sidebar_end();
|
|
html_footer();
|
|
|
|
?>
|