2012-03-25 16:51:13 +00:00
|
|
|
<?=$this->doctype()?>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<?=$this->headMeta()?>
|
|
|
|
<?=$this->headTitle()?>
|
|
|
|
<?=$this->headStyle()?>
|
|
|
|
<?=$this->headLink()?>
|
|
|
|
<?=$this->headScript()?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div data-role="page" data-theme="b">
|
|
|
|
<div data-role="header">
|
2012-04-20 08:07:15 +00:00
|
|
|
<a href="<?=$this->url(array('controller'=>'index'), null, true)?>" data-role="button"
|
|
|
|
data-icon="home" data-iconpos="notext">Menu</a>
|
|
|
|
<h1><?=$this->headTitle()?></h1>
|
|
|
|
<a href="<?=$this->url(array('controller'=>'index'), null, true)?>" data-role="button"
|
|
|
|
data-icon="search" data-iconpos="notext">Recherche</a>
|
2012-03-25 16:51:13 +00:00
|
|
|
</div>
|
|
|
|
<div data-role="content">
|
|
|
|
<?=$this->layout()->content?>
|
|
|
|
</div>
|
|
|
|
<div data-role="footer" data-position="fixed">
|
|
|
|
<h4>Menu</h4>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|