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/fvr.creativefellows.nl/views/view.impressie.php
<?php
	
	/*
	 * Header
	 */	
	echo $this->fetch('partials/header.inc.php', [
		"meta_title" => $page->metaTitle(),
		"meta_description" => $page->metaDescription(),
		"base_url" => $page->baseUrl(),
		"main_navigation" => $navigation->getHeader()
	]);
		
			  	
	/*
	 * Content
	 */
	foreach($page->getProperty("contents") as $row)
	{
		echo $row->html("page-section");
	}
	
	
	/*
	 * Form
		
	echo '<div class="reveal medium reveal__submit-form" id="'. $page->form()->url() .'" data-reveal data-deep-link="true">';
		
		if(isset($_GET["hash"]) && $page->form()->hash() == $_GET["hash"])
		{
			echo $page->form()->responseText();
		}
		else
		{
			echo $page->form()->title();
			echo $page->form()->lead();		
			echo $page->form()->html([
				"label" => "small-12 text-left",
				"input" => "small-12"]
			);
		}
		
		echo '<button class="close-button" data-close aria-label="Close modal" type="button"><span aria-hidden="true">&times;</span></button>';
	echo '</div>';	
		 */	
	
	/*
	 * Footer
	 */
	echo $this->fetch('partials/footer.inc.php',[
		"base_url" => $page->baseUrl(),
	]);