12 lines
407 B
PHP
12 lines
407 B
PHP
<?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>
|