Sequenzia/app/views/note/_note.php
2013-10-26 18:06:58 -05:00

8 lines
377 B
PHP
Executable File

<div class="note-box" style="width: <?= $note->width ?>px; height: <?= $note->height ?>px; top: <?= $note->y ?>px; left: <?= $note->x ?>px;" id="note-box-<?= $note->id ?>">
<div class="note-corner" id="note-corner-<?= $note->id ?>"></div>
</div>
<div class="note-body" id="note-body-<?= $note->id ?>" title="<?= $this->t('.click') ?>">
<?= $this->h($note->body) ?>
</div>