6 lines
223 B
PHTML
6 lines
223 B
PHTML
<?php foreach ($this->content as $chapter): ?>
|
|
<a href="#" name="<?=$chapter->Title ?>"></a>
|
|
<h2><?=$this->translate('uw:'.$chapter->Title) ?></h2>
|
|
<br />
|
|
<p><?=$chapter->Content ?></p>
|
|
<?php endforeach; ?>
|