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
34
35
|
<?php $this->layout('layout', ['title' => '✏ '.$art->title()]) ?>
<?php $this->start('page') ?>
<style>.tabs textarea{font-size: <?= Config::fontsize() ?>px}</style>
<body>
<section class="editor">
<?php $this->insert('navart', ['user' => $user, 'art' => $art, 'artexist' => $artexist]) ?>
<?php $this->insert('edittopbar', ['art' => $art]) ?>
<div id="workspace">
<?php $this->insert('editleftbar', ['art' => $art, 'tablist' => $tablist, 'artlist' => $artlist, 'showleftpanel' => $showleftpanel]) ?>
<?php $this->insert('edittabs', ['tablist' => $tablist, 'opentab' => $art->interface()]) ?>
<?php $this->insert('editrightbar', ['art' => $art, 'artlist' => $artlist, 'showrightpanel' => $showrightpanel]) ?>
</div>
<input type="hidden" name="id" value="<?= $art->id() ?>">
</form>
</section>
</body>
<?php $this->stop() ?>
|