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/mygeomil.creativefellows.nl/v0.1/views/view.dashboard.php
<?php

	echo $this->fetch('partials/header.inc.php', [
		"meta_title" => $page->metaTitle(),
		"meta_description" => $page->metaDescription(),
	//	"navigation" => $navigation
	]);

?>

<div class="grid-y grid-frame">
	
	<div class="cell shrink header">
		<?php
			
			echo $navigation->getHeader();
			
		?>
	</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%;">
					
												
					
					
					
					<!-- content -->
					<div class="cell auto">
							
						<div class="grid-container">
							<div class="grid-x">
								<div class="cell small-12">
									<div class="page-content">
										

										<?php
											
											// list al past order
											echo $this->fetch('partials/order-saved.inc.php',[
												"saved" => $saved
											]);
											
											// list al past order
											echo $this->fetch('partials/order-history.inc.php',[
												"orders" => $data->orders()
											]);
									
											echo $data->pagination();
											
										?>

									</div>
									
									
								</div>
								
								<?= 
									// article reveal
									$this->fetch('partials/article-reveal.inc.php'); 
									
								?>
								
							</div>
						</div>
						
					</div>
					
				</div>
				
				<?=
					$this->fetch('partials/partial.view-order.php',[
						"form" => ""//$admin->form()
					]);

				?>
			
			
			</div>			
		</div>
		
		
		
	</div>

</div>

<?php

	echo $this->fetch('partials/footer.inc.php');

?>