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/translate.creativefellows.nl/views/project/list_projects.php
<?php

	include_once __DIR__."/../inc/header.php";

?>

<div class="grid-y grid-frame">
	
	<div class="cell shrink header">
		<?php
			
			include_once __DIR__."/../inc/navigation_top.php";
			
		?>
	</div>
	
	<div class="cell auto">
		
		
		<div class="grid-y grid-frame">
			<div class="cell auto cell-block-y">
				
				<div class="grid-x" style="height:100%;">
					
					<!-- sidebar -->
					<div class="cell shrink">
						<div class="sidebar">
							
							<?php

								echo '<ul class="menu vertical">';
									foreach($projects as $project)
									{
										echo '<li><a href="'. $router->pathFor("project.view", ["page"=>"projects", "language" => $project->firstLanguage("locale"), "pid" => $project->url()]) .'">'. $project->name() .'</a></li>';
									}
									echo '<li class="hide">';
										echo '<a href="#" class="add-new-item"><span class="fa-stack fa-1x">';
									  	echo '<i class="fas fa-circle fa-stack-2x"></i>';
										echo '<i class="fas fa-plus fa-stack-1x fa-inverse"></i>';
										echo '</span></a>';
									echo '</li>';
								echo '</ul>';
								
							?>
						
							
							
							
						</div>
					</div>
					
					
					<!-- content -->
					<div class="cell auto">
							
						<div class="grid-container">
							<div class="grid-x grid-padding-x grid-margin-x">
								<div class="cell small-12 content">
									<div class="content-block">
										
										<?php
											
											echo '<h1>New Project</h1>';
											echo $form->html();
											
										?>
										
									</div>									
								</div>
							</div>
						</div>
						
						
					</div>
					
				</div>
			
			
			
			</div>			
		</div>
		
		
		
	</div>

</div>

<?php

	include_once __DIR__."/../inc/footer.php";

?>