site/news.php

16 lines
472 B
PHP
Raw Normal View History

2017-12-28 22:29:14 +00:00
<?php
foreach (array_reverse(glob("news/*.json")) as $file):
2017-12-28 22:29:14 +00:00
$post = json_decode(file_get_contents($file));
if (!$post->published) continue; ?>
<div class="list-group">
<div class="list-group-item">
<h4 class="list-group-item-heading"><?=$post->title?></h4>
<em><?=$post->date?> - <?=$post->author?></em>
2017-12-28 22:29:14 +00:00
<p class="list-group-item-text"><?=$post->content?></p>
</div>
</div>
<?php endforeach;