blob: 27c3d874db2e7b4be627f52d6e6c6b087d8978f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php $this->layout('readerlayout') ?>
<?php
$this->start('head');
echo $head;
$this->stop();
?>
<?php $this->start('page') ?>
<body>
<?= $body ?>
</body>
<?php $this->stop() ?>
|