bludit/bl-themes/forty/php/home.php

14 lines
331 B
PHP
Raw Normal View History

2016-09-21 04:17:45 +02:00
<section id="one" class="tiles">
<?php
2016-09-22 04:03:30 +02:00
foreach($parents as $page) {
2016-09-21 04:17:45 +02:00
echo '<article>';
echo '<header class="major">';
echo '<h3>';
2016-09-22 04:03:30 +02:00
echo '<a href="'.$page->permalink().'" class="link">'.$page->title().'</a>';
2016-09-21 04:17:45 +02:00
echo '</h3>';
2016-09-22 04:03:30 +02:00
echo '<p>'.$page->description().'</p>';
2016-09-21 04:17:45 +02:00
echo '</header>';
echo '</article>';
}
?>
</section>