blob: c3ec9fd8eebabb3ac157cf6ee1bf0091ba450fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<article class="note">
<img class="authorAvatar" src="<?= $note->author->avatar ?>">
<div>
<a class="authorName" <?= isset($note->author->homepage) ? 'href="' . $note->author->homepage . '"' : '' ?>>
<?= $note->author->displayName ?>
</a>
<div class="postContent">
<?= $note->plainContent ?>
</div>
</div>
</article>
|