<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<%@ include file="/includes/taglibs.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Andy Nilson Site - <tiles:getAsString name="title"/></title>
<link rel="stylesheet" type="text/css" href="<html:rewrite page='/css/global.css'/>" />
<c:if test="${noCache == true}">
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="expires" content="0"/>
</c:if>
</head>
<body>
<table border="0" width="100%" cellspacing="5">
<tr>
<td colspan="2"><tiles:insert attribute="header" /></td>
</tr>
<tr>
<td valign="top"><tiles:insert attribute='menu'/></td>
</tr>
<tr>
<td style="width:100%"><hr/></td>
</tr>
<tr>
<td valign="top" align="left"><tiles:insert attribute='body' /></td>
</tr>
<tr>
<td colspan="2"><hr/></td>
</tr>
<tr>
<td colspan="2" class="center"><tiles:insert attribute="footer" /></td>
</tr>
</table>
</body>
</html>