<?php
/* +----------------------------------------------------------------------+
|SelectaPix Open Source Gallery |
+----------------------------------------------------------------------+
| Copyright (c) 2004 OutOfTheTrees |
| |
| http://www.outofthetrees.co.uk/index.php |
| |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the GPL license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.outofthetrees.co.uk/license/2_0.txt. |
| If you did not receive a copy of the SelectaPix license and are |
| unable to obtain it through the world-wide-web, please send a note |
| to hide@address.com so we can mail you a copy immediately.|
+----------------------------------------------------------------------+ */
/* Do not remove/alter the following 3 lines */
require_once("includes/inc_global_fns.php");
$page = new TopCat($f, SITE_NAME);
$page->SetPageTitle(SITE_NAME);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title><?php echo $page->pagetitle(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">@import "<?php echo $page->stylesheet(); ?>";</style>
</head>
<body>
<!-- Your content can be inserted here -->
<!-- Your content ends here -->
<!-- Gallery content is inserted below here -->
<div id="wrapper">
<?php
$page->crumbs();
$page->ShowBody();
?>
</div>
<!-- Your content can be inserted here -->
<!-- Your content ends here -->
</body>
</html>
<?php
$f->Unload();
unset($f);
?>