33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/header.php"); ?>
|
|
|
|
|
|
<?php if(is_array($newss) && count($newss)): ?>
|
|
<?php foreach($newss as $news): ?>
|
|
<div class="row justify-content-center mt-1">
|
|
<div class="col-12 col-xl-10 mt-2">
|
|
<h4>Neuigkeiten</h4>
|
|
<div class="card no-shadow" style="border: 1px solid #ced4da">
|
|
<div class="card-header bg-info text-white pt-1 pb-1" style="font-size: 1rem; font-weight: 400;">
|
|
<span><?=date("d.m.Y", $news->create)?>:</span>
|
|
<?php if($news->subject): ?>
|
|
<?=$news->subject?>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="card-body pb-0 pt-1">
|
|
<div class="row col-12">
|
|
<div><?=$news->text?></div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer pt-1 pb-1 bg-light text-secondary text-monospace font-italic">
|
|
<?=$news->editor->name?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php include(realpath(dirname(__FILE__)."/../../$mfLayoutPackage")."/footer.php"); ?>
|