HEX
Server: Apache
System: Linux v38079.2is.nl 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: democfellows (10015)
PHP: 8.1.34
Disabled: opcache_get_status
Upload Files
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";
		
		
		
?>