f0d299f3977f998be15bf1b9027ce2b3e4b9bcf8
[mw_pages] / out / dist / views / pages / view / page.php
1 <h2>
2 <?php $k = 0; foreach($this->out["ariane"] as $page) : if($k < count($this->out["ariane"]) - 1) : ?>
3   <?php if($k > 0) : ?>
4   &raquo;
5   <?php endif; ?>
6   <a href="<?= $this->url("pages/view/page", array("id" => $page["id"])) ?>"><?= $page["title"] ?></a>
7 <?php $k++; endif; endforeach; ?>
8   <?php if($k > 0) : ?>
9   &raquo;
10   <?php endif; ?>
11   <?= $this->out["page"]["title"] ?>
12 </h2>
13
14 <div>
15   <?= $this->out["page"]["content"]  ?>
16 </div>
17 <?php if($this->out["pages"]["list"]) : ?>
18 <ul class="pages_menu">
19 <?php foreach($this->out["pages"]["list"] as $page) : ?>
20   <li><a href="<?= $this->url("pages/view/page", array("id" => $page["id"])) ?>"><?= $page["title"] ?></a></li>
21 <?php endforeach; ?>
22 </ul>
23 <?php endif; ?>