blob: 93a22fdca3dce99974caefbf5a66adeebc9e3fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<article class="note">
<picture>
<source srcset="<?= $note->author->avatar ?>">
<img class="authorAvatar" src="/static/default-avatar.svg">
</picture>
<div>
<a class="authorName" <?= isset($note->author->homepage) ? 'href="' . $note->author->homepage . '"' : '' ?>>
<?= $note->author->displayName ?>
</a>
<div class="postContent">
<?= $note->getFormattedContent('text/html') ?? htmlspecialchars($note->plainContent) ?>
</div>
</div>
</article>
|