mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 08:17:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			284 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
	$page = $argv[1];
 | 
						|
	include('template/head.php');
 | 
						|
	include('template/header.php');
 | 
						|
?>
 | 
						|
	<div class="container-fluid">
 | 
						|
<?php
 | 
						|
	$page_include = (__DIR__).'/content/'.$page;
 | 
						|
	include($page_include);
 | 
						|
	include('template/sidebar.php');
 | 
						|
?>
 | 
						|
	</div>
 | 
						|
<?php
 | 
						|
	include('template/footer.php');
 |