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.home.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()
	]);
		
	/*
	 * Masthead
		
	echo '<div class="page-section page-section__masthead-image">';
	
		echo '<div class="foreground">';
			echo '<div class="grid-container">';
				echo '<div class="grid-x grid-padding-x align-middle">';
				
					echo '<div class="cell small-12 medium-4 slide-text">';
						echo '<h2>De Eetzaal</h2>';
						echo '<p>Geliefde plek voor vergaderingen en andere overlegsituaties</p>';
						echo '<a href="" class="button primary">Vergaderen</a>';
						//echo $page->getProperty("intro","blockquote");
					echo '</div>';

				echo '</div>';
			echo '</div>';
		echo '</div>';
	
		echo '<div class="background">';
			echo $page->getProperty("foto","lazy-load-background");
		echo '</div>';
	
	echo '</div>';
	 */	
		
			  	
	/*
	 * 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(),
		"reviews" => $data["reviews"]
	]);