mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 09:27:33 -04: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');
 |