Guest Book (and components, yea)

This commit is contained in:
2024-05-10 13:44:58 +02:00
parent 54e43f4318
commit c86bba1596
8 changed files with 92 additions and 84 deletions
+16
View File
@@ -0,0 +1,16 @@
<div class="col">
<div class="card h-100">
<div class="card-header">
<h5 class="card-title"><?= $comment->title ?></h5>
<h6 class="card-subtitle mb-2 text-muted"><?= $comment->name ?></h6>
</div>
<div class="card-body">
<p class="card-text"><?= $comment->comment ?></p>
</div>
<div class="card-footer">
<small class="text-muted">
<?php echo date("d.m.Y H:i", $comment->time) ?>
</small>
</div>
</div>
</div>