kpmpgsmkii/kanga.world/site/templates/home.php
2022-01-02 17:31:29 -06:00

23 lines
618 B
PHP

<?php
snippet('header');
snippet('rightlogoheader');
foreach($page->children()->listed()->flip() as $article):
?>
<article class="news">
<h3><?= $article->title()->html() ?></h3>
<?php if ($article->image()) { ?>
<img src="<?= $article->image()->resize(100, 100)->url() ?>" class="imageright"/>
<?php } ?>
<p class="newspublished">Published: <span class="newsdate"><?= $article->date()->toDate('d-M-Y') ?></span></p>
<p><?= $article->text()->excerpt(300) ?></p>
<a href="<?= $article->url() ?>">Read more...</a>
</article>
<?php
endforeach;
snippet('rightlogofooter');
snippet('footer');
?>