File: /var/www/vhosts/creativefellows.nl/test.creativefellows.nl/ergatis/pages/page.aanmelden.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="col17 sub-grid">';
$html .= $e[0]->content;
/*
* Aanmeldingsformulier
*/
require_once ROOT_DIR . 'pages/sections/section.aanmeldingsform.php';
$html .= $aanm_form;
$html .= '</div>';
/*
* Sidebar
*/
require_once ROOT_DIR . 'pages/sections/section.sidebar.php';
$html .= '<div class="col6 offset1 sub-grid sidebar">';
$html .= $sidebar;
/*
* downloads
*/
$html .= $cassette->getFilesAsList($e[0]->downloads,'<h3>Downloads</h3>',"downloads");
/*
* custom sidebar
*/
if($e[0]->sidebar) $html.= '<div class="custom-sidebar"><div class="custom-sidebar-wrapper">'. $e[0]->sidebar .'</div></div>';
else{
require_once ROOT_DIR . 'pages/sections/section.fdgazelle.php';
}
$html .= '</div>';
/*
* Output HTML
*/
echo $cassette->wrapAsSection($html);
/*
* two column details + vervolgacties
*/
require_once ROOT_DIR . "pages/sections/section.related_info.php";
?>