1
0

Several small fixes + removed unnecessary files

This commit is contained in:
2017-04-03 16:26:17 +02:00
parent 4bde697558
commit 8552933a52
11 changed files with 99 additions and 158 deletions

View File

@ -6,10 +6,13 @@
?>
<div class="panel panel-default">
<div class="panel-heading">
<?php if(!$bericht['gelezen']){?>
<span class="label label-info">Nieuw bericht</span>
<?php } ?>
<h3 class="panel-title"><?php echo $bericht['datum'];?></h3>
<?php if (!$bericht['gelezen']) {
?>
<span class="label label-info">Nieuw bericht</span><br/><br/>
<?php
} ?>
<h3 class="panel-title"><?php echo $bericht['datum']; ?></h3>
<small>Afzender: </small><?php echo $bericht['afzender']; ?></div>
<div class="panel-body">
<?php echo $bericht['bericht']; ?>
@ -17,6 +20,13 @@
</div>
<?php
} ?>
}
if (count($berichten) === 0) {
?>U heeft geen berichten.<?php
}
?>
<?php include '__footer.phtml'; ?>