16 lines
		
	
	
		
			580 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			580 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html prefix="og: http://ogp.me/ns#">
 | |
| <head>
 | |
|   <title><?php if(x($page,'title')) echo $page['title'] ?></title>
 | |
|   <script>var baseurl="<?php echo z_root() ?>";</script>
 | |
|   <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
 | |
| </head>
 | |
| <body>
 | |
| 	<header><?php if(x($page,'header')) echo $page['header']; ?></header>
 | |
| 	<nav class="navbar fixed-top navbar-expand-md navbar-inverse bg-inverse"><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
 | |
| 	<section><?php if(x($page,'content')) echo $page['content']; ?>
 | |
| 		<div id="page-footer"></div>
 | |
| 	</section>
 | |
| </body>
 | |
| </html>
 |