<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
	<html>
		<head>
			<title>World of Inora</title> <!-- change with php script -->
		</head>
	
		<body>
			<table height="100%" width="100%" border="1">
	
				<tr height="10%">
					<td align="center" colspan="2">Banner</td> <!-- Load image using php script -->
				</tr>
	
				<tr height="80%">
					<td width="15%" align="center">Menu</td> <!-- Load menu using php script -->
					<td width="85%" align="center"><xsl:apply-templates/></td> <!-- Format display depending upon what type of item -->
				</tr>
	
				<tr height="10%">
					<td align="center" colspan="2">Copyrights</td> <!-- Format copyrights depending on content -->
				</tr>
			</table>
		</body>
	</html>
</xsl:template>

<xsl:template match="docType">
	<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>