1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CakePHP(tm) : <?php echo $title_for_layout;?></title>
<link rel="icon" href="<?php echo $this->webroot . 'favicon.ico';?>" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo $this->webroot . 'favicon.ico';?>" type="image/x-icon" />
<?php //echo $html->css('cake.generic');?>
<?php echo $html->charset('UTF-8')?>
<?php echo $html->css('flash') ?>
<?php echo $head->print_registered() ?>
</head>
<body>
<table width="98%" border="0" cellspacing="2" cellpadding="2">
<!-- Header Bar Starts -->
<tr>
<td colspan="3">
<div id="header">
<h1>CakePHP Rapid Development</h1>
<h4>Welcome on Tu|Yu site</h4>
</div>
</td>
</tr>
<!-- Header Bar Ends -->
<tr>
<!-- Left Navigation Bar Starts -->
<td width="20%">
<div id="leftbar">
// Right Navigation Bar;
</div>
</td>
<!-- Left Navigation Bar Ends -->
<!-- Middle Content Starts -->
<td width="62%">
<div id="container">
<div id="content">
<?php if ($session->check('Message.flash'))
{
$session->flash();
}
echo $content_for_layout;
?>
</div>
</div>
</td>
<!-- Middle Content Ends -->
<!-- Right Navigation Bar Starts -->
<td width="18%">
<?php
// Right Navigation Bar;
?>
</td>
<!-- Right Navigation Bar Ends -->
</tr>
<!-- Footer Bar Starts -->
<tr>
<td colspan="3">
<div id="footer">
<a href="http://www.cakephp.org/" target="_new">
<?php echo $html->image('cake.power.png', array('alt'=>"CakePHP(tm) : Rapid Development Framework", 'border'=>"1"));?>
</a>
</div>
</td>
</tr>
<!-- Footer Bar Ends -->
</table>
</body>
</html>
<?php echo $cakeDebug?>
|
