<!DOCTYPE html>
<html>
<head>
<title>{title}</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<div id="nav-menu">
<ul>
<li><a href="user.php" title="example of a user profile page">User profile</a> | </li>
<li><a href="user_loop.php" title="example of a user profile page with loop">User profile With Loop</a> | </li>
<li><a href="list_users.php" title="example table with listing of users">List users</a> | </li>
</ul>
<div class="clear"> </div>
</div>
<div id="content">
{content}
</div>
<div id="footer">
Example usage of the Simplate - simple PHP Template Engine.<br />
Visit <a href="http://www.naijaprogrammer.com">NaijaProgammer</a> for more developer resources.
</div>
</body>
</html>
|