blob: a6cc2a0b85e1503269b235e0dab3c40e1dacdf04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<div id="rightbar">
<input id="showrightpanel" name="workspace[showrightpanel]" value="1" class="toggle" type="checkbox" <?= $showrightpanel == true ? 'checked' : '' ?>>
<label for="showrightpanel" class="toogle">◧</label>
<div id="rightbarpanel" class="panel">
<details id="linkassist" open>
<summary>Links</summary>
<?php
foreach ($artlist as $item ) {
?>
<a href="<?= $this->uart('artedit', $item) ?>"><?= $item ?></a>
<input type="text" value="[<?= $item ?>](=<?= $item ?>)">
<?php
}
?>
</details>
</div>
</div>
|