8 lines
240 B
PHP
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 ?>
|