metastorage/applications/metanews/templates/page.php - view - 1.4
<?php
/*
*
* @(#) $Id: page.php,v 1.4 2006/01/30 04:27:56 mlemos Exp $
*
*/
class template_page_class
{
var $title = '';
var $title_prefix = '';
Function Header()
{
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title><?php echo $this->title_prefix; ?> - <?php echo $this->title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" type="text/css" href="css/styles.css" title="base presentation styles">
</head>
<body style="background-color: #aaaaaa">
<h1 class="importantmessage"><?php echo $this->title; ?></h1>
<hr>
<?php
}
Function Footer()
{
?>
<hr>
<address>For more information contact: <a href="mailto:info-at-meta-language.net?Subject=More%20information%20about%20MetaL">info-at-meta-language.net</a></address>
</body>
</html>
<?php
}
};
?>
|