summaryrefslogtreecommitdiff
path: root/src/web/_views/_template/comment.php
blob: f8a0ff5cd950dcd0642df0de80169734553c9147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php /* vi: syntax=php */ ?>
<div class="comment row mt">
	<?=pfp($user)?>
	<div class="ml col sub-card">
		<div class="row">
			<strong><?=$this->format_name($user)?></strong>
			<span class="subtext ml"><?=$this->format_date($comment['created'])?></span>
		</div>
		<p class="content">
			<?=$comment['content']?>
		</p>
	</div>
</div>