blob: 3ff473b23cd2efb0c1939718ff9cb73a5f1d0781 (
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">
<?php $this->view('template/pfp', array('user' => $user))?>
<div class="ml col sub-card">
<div class="row">
<strong><?=$format_model->name($user)?></strong>
<span class="dim ml"><?=$format_model->date($comment['created'])?></span>
</div>
<?=$comment['content']?>
</div>
</div>
|