blob: 943f2326ce9c92513bb7b3353fc571ce17c15da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php /* vi: syntax=php */ ?>
<div class="comment row mt">
<?php $this->view('template/pfp', array('user' => $user))?>
<div class="ml col sub-card">
<div class="row">
<strong><?=$this->main->display_name($user)?></strong>
<span class="dim ml"><?=$this->main->display_date($comment['date'])?></span>
</div>
<?=$comment['content']?>
</div>
</div>
|