25 lines
619 B
PHTML
25 lines
619 B
PHTML
|
<?=$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">
|
||
|
<a href="index.html" data-role="button" data-icon="home" data-iconpos="notext">Menu</a>
|
||
|
<h1>Titre</h1>
|
||
|
<a href="index.html" data-role="button" data-icon="search" data-iconpos="notext">Recherche</a>
|
||
|
</div>
|
||
|
<div data-role="content">
|
||
|
<?=$this->layout()->content?>
|
||
|
</div>
|
||
|
<div data-role="footer" data-position="fixed">
|
||
|
<h4>Menu</h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|