53 lines
No EOL
914 B
PHTML
53 lines
No EOL
914 B
PHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<?=$this->headTitle()."\n" /* Newline for pretty source :) */ ?>
|
|
<meta content="description"></meta>
|
|
<link rel="stylesheet" type="text/css" href="<?=$this->baseUrl()?>/css/default.css" media="screen" />
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
</div>
|
|
|
|
<div id="nav">
|
|
|
|
<?=$this->navigation() ?>
|
|
|
|
<span class="float-right">
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<form>
|
|
<fieldset>
|
|
<label for="t1">Text</label>
|
|
<input type="text" id="t1" /><br />
|
|
<label for="ta1">Areaaaa</label>
|
|
<textarea id="ta1"></textarea><br />
|
|
<input type="submit" />
|
|
</fieldset>
|
|
</form>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>abc</th>
|
|
<th>bab</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>abc</td>
|
|
<td>bbb</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<?=$this->layout()->content ?>
|
|
|
|
</body>
|
|
</html>
|