blob: 3d4d2e2e33c9589e7f35e1152a9f2835e7cebff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
/** @var \Digitigrade\Model\Note $note */
$page = $note->getPage();
?>
<a class="pageItem" href="<?= htmlspecialchars($note->getLocalUiHref(true)) ?>">
<?= call_template('actor/avatar', ['actor' => $note->author]) ?>
<div>
<div class="title"><?= htmlspecialchars($page->title) ?></div>
<div class="author"><?= htmlspecialchars($note->author->displayName) ?></div>
</div>
</a>
|