25 lines
		
	
	
		
			428 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			428 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php 
 | |
| require_once(ROOT_DIR."/controller/MVCController.php");
 | |
| require_once("index.php");
 | |
| ?>
 | |
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<link rel="stylesheet" type="text/css" href="./view/css/main.css">
 | |
| 	</head>
 | |
| 	<body>
 | |
| 		<header class="row">
 | |
| <?php 
 | |
| include_once(ROOT_DIR."/view/webcontent/content_header.php");
 | |
| ?>
 | |
| 		</header>
 | |
| 		<div class="main">
 | |
| <?php 
 | |
| $mvcController->loadView();
 | |
| ?>
 | |
| 		</div>
 | |
| 		<footer>
 | |
| 			
 | |
| 		</footer>
 | |
| 	</body>
 | |
| </html>
 |