Warning, /sdk/pology/www/base/header.inc is written in an unsupported language. File is not indexed.

0001 <?php
0002 /*
0003 Expects following variables to be defined:
0004 
0005   $page_title: the title of the page (HTML <title>)
0006 
0007 */
0008 
0009 //mb_internal_encoding("UTF-8");
0010 ?>
0011 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0012 <html>
0013 <head>
0014 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
0015 <title><?php echo $page_title?></title>
0016 <link rel="stylesheet" href="main.css" type="text/css">
0017 </head>
0018 <body>
0019 
0020 <?php
0021 ?>