aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/read.php
blob: 54b137e70f4067f2ead3fd01e620c644d54b47f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php $this->layout('readerlayout') ?>

<?php
$this->start('head');

echo $head;

$this->stop();
?>



<?php $this->start('page') ?>

<body>



    <?php
    if ($readernav) {
        $this->insert('navart', ['user' => $user, 'art' => $art, 'artexist' => $artexist, 'canedit' => $canedit]);
    }



    echo $body;

    ?>


</body>

<?php $this->stop() ?>