correction notices et modifs css
[mw_pages] / app / out / default / views / pages / view / page.php
1 <article>
2   <header>
3     <?php if(count($this->out["ariane"]) > 1) : ?>
4     <ul class="page_ariane">
5       <?php foreach($this->out["ariane"] as $page) : ?>
6       <li><a href="<?php echo $this->url("pages/view/page", array("id" => $page["id"])); ?>"><?php echo $page["title"]; ?></a></li>
7       <?php endforeach; ?>
8     </ul>
9     <?php endif; ?>
10     <h1><?php echo $this->out["page"]["title"]; ?></h1>
11     <?php if($this->out["pages"]["list"]) : ?>
12     <nav class="sous_pages">
13       <ul class="pages_menu">
14       <?php foreach($this->out["pages"]["list"] as $page) : ?>
15         <li><a href="<?php echo $this->url("pages/view/page", array("id" => $page["id"])); ?>"><?php echo $page["title"]; ?></a></li>
16       <?php endforeach; ?>
17       </ul>
18     </nav>
19     <?php endif; ?>
20   </header>
21   <div class="page_content">
22     <?php echo $this->out["page"]["content"]; ?>
23   </div>
24 </article>