<?php
$offset = 60 * 60 * 24 * 10;
$ExpStr = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
header($ExpStr);
header("Cache-Control: must-revalidate");
header('Content-type: application/xhtml+xml; charset=utf-8');
?>
<?php echo "".'<?xml version="1.0" encoding="utf-8"?>'."\n"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
"http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ca">
<head>
<title>Page Title Here</title>
<meta name="description" content="Describe your page contents here" />
<meta name="keywords" content="list your keywords here" />
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<meta name = "viewport" content = "width = device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
<meta name="HandheldFriendly" content="True" />
<link rel="stylesheet" href="handheld.css" type="text/css" media="handheld"/>
</head>
<body>
<div id="page">
<div id="header">
An image logo and a phone number link can go here.
</div>
<div id="content">
Your page contents.
</div>
<div id="footer">
A little footer stuff like copyright info and maybe a link back to full non-mobile version of website.
you could include your site navigation links in here, or in a seperate div above the footer.
</div>
</div>
</body>
</html>