You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
461 B

<?php $params['title'] = 'Home'; ?>
<h1>Hello world!</h1>
<?php foreach ($params['news'] as $news) : ?>
<div class="card">
<header class="card-header">
<p class="card-header-title">
<?= $news->getTitle() ?>
</p>
</header>
<div class="card-content">
<div class="content">
<?= $news->getContent() ?>...
</div>
</div>
</div>
<?php endforeach ?>