3212d13152
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@402 7f0cb862-5218-0410-a997-914c9d46530a
29 lines
473 B
PHP
29 lines
473 B
PHP
<?PHP
|
|
global($site_title, $title);
|
|
$site_title = "The freeglut Project";
|
|
$title = $site_title . " :: The Next Generation of GLUT";
|
|
|
|
function generateHeader() {
|
|
?>
|
|
<HTML>
|
|
<HEAD>
|
|
<title><? echo $title ?></title>
|
|
<link rel="stylesheet" type="text/css" href="freeglut-style.css">
|
|
</HEAD>
|
|
<BODY>
|
|
<?
|
|
}
|
|
|
|
function generateFooter() {
|
|
?>
|
|
</BODY>
|
|
</HTML>
|
|
<?
|
|
}
|
|
|
|
function setPageTitle($title_inc) {
|
|
global($site_title, $title);
|
|
$title = $site_title . " :: " . $title_inc;
|
|
}
|
|
|
|
?>
|