summaryrefslogtreecommitdiff
path: root/src/web/_views/template/comment.php
blob: 72bcedf6b501aee4b2e055c3aba47fc1d99a92ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php /* vi: syntax=php */ ?>
<?php
	$format_model = $this->load->model('format');
?>
<div class="comment row mt">
	<?=pfp($user)?>
	<div class="ml col sub-card">
		<div class="row">
			<strong><?=$format_model->name($user)?></strong>
			<span class="dim ml"><?=$this->main->date($comment['created'])?></span>
		</div>
		<?=$comment['content']?>
	</div>
</div>