Archived
1
0

Initial commit as of 2018-10-16

This commit is contained in:
Marcel
2018-10-16 18:28:42 +02:00
commit 29d7c2ffdc
3601 changed files with 358427 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<li <?= isset($hidden) && $hidden ? 'style="display:none"' : '' ?>>
<div class="well comment-well">
<div class="d-inline-block mr-2">
<a href="<?= base_url('user/' . $author['username']) ?>" target="_blank">
<img src="<?= $author['profile_picture'] ?>" alt="">
</a>
</div>
<div class="d-inline-block mr-2">
<div class="content" style="padding-top:5px">
<h3>
<small>von
<a href="<?= base_url('user/' . $author['username']) ?>" target="_blank">
<?= $author['displayname'] ?>
</a>
/
<?= date('d.m.Y H:i \\U\\h\\r', strtotime($date_created)) ?></small>
</h3>
<p class="comment">
<?= $comment ?>
</p>
</div>
</div>
</div>
</li>