eastside/application/views/news/index.php
Linus Miller cd141ef6fa Initial commit.
Former-commit-id: d2e17d67fe98124db4e87b10597af9d54d14d0de
2013-12-07 17:43:26 +01:00

8 lines
240 B
PHP

<?php foreach($news as $item): ?>
<h2><?php echo $item['title'] ?></h2>
<div class="article">
<?php echo $item['text'] ?>
</div>
<p><a href="news/<?php echo $item['slug'] ?>">View article</a></p>
<?php endforeach ?>