blob: 6d909329f46132f12f4e2ebb4c9462000c3d2caf (
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
|
<div id="topbar">
<form action="<?= $this->uart('artupdate', $art->id()) ?>" method="post" id="update">
<span>
<a href="<?= $this->url('home') ?>" class="icon" >⏏</a>
</span>
<span>
<input type="submit" value="update" accesskey="x" form="update">
</span>
<span>
<a href="<?= $this->uart('artconfirmdelete', $art->id()) ?>">✖ delete</a>
</span>
<span>
<a href="<?= $this->uart('artread/', $art->id()) ?>" target="_blank" class="icon" >👁</a>
<a href="<?= $this->uart('artlog', $art->id()) ?>" target="_blank" class="icon" >⁋</a>
</span>
<span id="headid"><?= $art->id() ?></span>
<span>
<label for="fontsize">Font-size</label>
<input type="number" name="fontsize" value="<?= Config::fontsize() ?>" id="fontsize">
</span>
</div>
|