blob: 7944956ca3eaaaa3e308989167e7e7214987d952 (
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>
|