You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
665 B
19 lines
665 B
<?php $params['title'] = 'Comment'; ?>
|
|
<h1>Comments</h1>
|
|
<?php foreach ($params['comments'] as $comment) : ?>
|
|
<div class="card">
|
|
<header class="card-header">
|
|
<p class="card-header-title">
|
|
<?= $comment->getCommentId() ?>
|
|
</p>
|
|
</header>
|
|
<div class="card-content">
|
|
<div class="content">
|
|
<?= "AuthorId :" . $comment->getAuthorId() . " published on " . $comment->getPublicationDate()->format('Y-m-d H:i:s') ?>
|
|
</div>
|
|
<div class="content">
|
|
<?= $comment->getContent() ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach ?>
|