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): ?>
|
2019-02-22 22:38:06 +01:00
|
|
|
<h1 class="newsTitle">
|
|
|
|
<?php echo $news['title']; ?>
|
2020-10-02 17:07:14 +02:00
|
|
|
</h1>
|
2019-02-22 22:38:06 +01:00
|
|
|
<div class="newsContent">
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo $news['content']; ?>
|
|
|
|
</div>
|
2020-05-06 07:19:51 +02:00
|
|
|
<div class="newsSignature">
|
2020-10-02 17:07:14 +02:00
|
|
|
<i class="far fa-calendar-alt"></i>
|
2020-11-01 13:38:25 +01:00
|
|
|
<?php echo mb_detect_encoding(strftime('%d %B %Y', $news['publishedOn']), 'UTF-8', true)
|
|
|
|
? strftime('%d %B %Y', $news['publishedOn'])
|
|
|
|
: utf8_encode(strftime('%d %B %Y', $news['publishedOn'])); ?>
|
2020-05-06 07:19:51 +02:00
|
|
|
- <?php echo $this->getData(['user', $news['userId'], 'firstname']) . ' ' . $this->getData(['user', $news['userId'], 'lastname']); ?>
|
|
|
|
</div>
|
2020-10-02 17:07:14 +02:00
|
|
|
<div class="clearBoth"></div>
|
2019-02-22 22:38:06 +01:00
|
|
|
<hr />
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo $module::$pages; ?>
|
2020-11-16 14:55:46 +01:00
|
|
|
<div id="rssFeed">
|
|
|
|
<a type="application/rss+xml" href="<?php echo $module::$rssUrl ?> ">
|
|
|
|
<img src='module/news/ressource/feed-icon-16.gif' /><p>Syndication RSS</p>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::speech('Aucune news.'); ?>
|
2020-11-15 18:39:03 +01:00
|
|
|
<?php endif; ?>
|