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/training.creativefellows.nl/views/view.page.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("vertical menu",true),
	]);
	

 	
	/*
	 * Content
	 */
	foreach($page->getProperty("contents") as $row)
	{
		echo $row->html("page-section");
	}
	
	
	echo '<div class="reveal large" id="id-of-the-video" data-reveal>
			  <div class="responsive-embed widescreen"><iframe width="560" height="315" src="https://www.youtube.com/embed/n8J8j-ia598" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></div>
			  <button class="close-button" data-close aria-label="Close modal" type="button">
			    <span aria-hidden="true">&times;</span>
			  </button>
			</div>';
	
	
	/*
	 * Footer
	 */
	echo $this->fetch($localization["footer"],[
		"base_url" => $page->baseUrl(),
		"date" => date("Y")
	]);