ZwiiCMS/module/news/view/index/index.php

20 lines
653 B
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php if($module::$news): ?>
<div class="row">
<div class="col12">
<?php foreach($module::$news as $newsId => $news): ?>
<div class="block">
<h4>
<?php echo $this->getData(['user', $news['userId'], 'firstname']) . ' ' . $this->getData(['user', $news['userId'], 'lastname']); ?>
le <?php echo date('d/m/Y H:i', $news['publishedOn']); ?>
</h4>
<h2><?php echo $news['title']; ?></h2>
<?php echo $news['content']; ?>
<div class="clearBoth"></div>
</div>
<?php endforeach; ?>
</div>
</div>
<?php echo $module::$pages; ?>
<?php else: ?>
<?php echo template::speech('Aucune news.'); ?>
<?php endif; ?>