LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
 | 
						|
/****************************************************
 | 
						|
*
 | 
						|
* @File: 			template.php
 | 
						|
* @Package:		GetSimple
 | 
						|
* @Action:		Innovation theme for GetSimple CMS
 | 
						|
*
 | 
						|
*****************************************************/
 | 
						|
 | 
						|
 | 
						|
# Get this theme's settings based on what was entered within its plugin. 
 | 
						|
# This function is in functions.php 
 | 
						|
$innov_settings = Innovation_Settings();
 | 
						|
 | 
						|
# Include the header template
 | 
						|
include('header.inc.php'); 
 | 
						|
?>
 | 
						|
	
 | 
						|
	<div class="wrapper clearfix">
 | 
						|
		<!-- page content -->
 | 
						|
		<article>
 | 
						|
			<section>
 | 
						|
				
 | 
						|
				<!-- title and content -->
 | 
						|
				<h1><?php get_page_title(); ?></h1>
 | 
						|
				<?php get_page_content(); ?>
 | 
						|
				
 | 
						|
				<!-- page footer -->
 | 
						|
				<div class="footer">
 | 
						|
					<p>Published on <time datetime="<?php get_page_date('Y-m-d'); ?>" pubdate><?php get_page_date('F jS, Y'); ?></time></p>
 | 
						|
				</div>
 | 
						|
			</section>
 | 
						|
			
 | 
						|
		</article>
 | 
						|
		
 | 
						|
		<!-- include the sidebar template -->
 | 
						|
		<?php include('sidebar.inc.php'); ?>
 | 
						|
	</div>
 | 
						|
 | 
						|
<!-- include the footer template -->
 | 
						|
<?php include('footer.inc.php'); ?>
 |