File: /var/www/vhosts/creativefellows.nl/test.creativefellows.nl/geomil/views/view.pagination_events.php
<?php
/*
* Get Header
*/
require_once 'inc/header.php';
$html = '<div class="grid-container row-actueel" data-equalizer>';
$html .= '<div class="grid-x grid-padding-x">';
$html .= '<div class="small-12 large-12 cell">';
$html .= '<h1>News & Events</h1>';
$html .= '</div>';
foreach($data["page"] as $i => $page)
{
//if($i == 0) continue;
$html .= '<div class="small-12 medium-4 cell">';
$html .= '<div class="card" data-equalizer-watch>';
$html .= '<div class="card-image"><a href="'. $page->getProperty("entry_link") .'">'. $page->getProperty("image","image") .'</a></div>';
$html .= '<div class="card-section">';
$html .= '<h3><a href="'. $page->getProperty("entry_link") .'" class="link">'. $page->getProperty("title") .'</a></h3>';
$html .= '<p>' . $page->getProperty("date_created","timestamp","%d-%m-%Y") . '</p>';
$html .= '</div>';
$html .= '</div>';
$html .= '</div>';
}
// $html .= '</div>';
$html .= '</div>';
$html .= '</div>';
// output
echo $data["config"]->wrapAsSection($html,"","space-1");
/*
* Get in touch
*/
require_once 'inc/get-in-touch.php';
/*
* Get Footer
*/
require_once 'inc/footer.php';
?>