File: /var/www/vhosts/creativefellows.nl/test.creativefellows.nl/ergatis/pages/page.contact.php
<?php
/*
* Qutes page
*/
require_once ROOT_DIR . 'pages/sections/section.qoutes.php';
/*
* Breadcrumbs
*/
require_once ROOT_DIR . 'pages/sections/section.breadcrumbs.php';
/*
* Contents
*/
$html = '<div class="col24 sub-grid">';
$html .= $e[0]->content;
/*
* Downloads
*/
$html .= $cassette->getFilesAsList($e[0]->downloads,'<h3>Downloads</h3>',"downloads","col24");
/*
* Vervolgacties
*/
require_once ROOT_DIR . 'pages/sections/section.vervolgacties.php';
$html .= $acties;
/*
* Contact form
*/
if($e[0]->form_id)
{
$form_id = $e[0]->form_id;
$hide_header = false;
require 'sections/section.form.php';
$html .= '<div class="col24">'. $return .'</div>';
}
$html .= '</div>';
/*
* Output HTML
*/
echo $cassette->wrapAsSection($html);
/*
* Two column details + vervolgacties
*/
require_once ROOT_DIR . "pages/sections/section.related_info.php";
?>