
LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
67 lines
1.6 KiB
PHP
67 lines
1.6 KiB
PHP
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
|
|
/****************************************************
|
|
*
|
|
* @File: template.php
|
|
* @Package: GetSimple
|
|
* @Action: Cardinal theme for GetSimple CMS
|
|
*
|
|
*****************************************************/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<!-- Site Title -->
|
|
<title><?php get_page_clean_title(); ?> < <?php get_site_name(); ?></title>
|
|
<?php get_header(); ?>
|
|
<meta name="robots" content="index, follow" />
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="<?php get_theme_url(); ?>/style.css" media="all" />
|
|
|
|
</head>
|
|
<body id="<?php get_page_slug(); ?>" >
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="header">
|
|
|
|
<ul id="nav">
|
|
<?php get_navigation(return_page_slug()); ?>
|
|
</ul>
|
|
|
|
<span class="logo2"><?php get_site_name(); ?></span>
|
|
<a class="logo" href="<?php get_site_url(); ?>"><?php get_site_name(); ?></a>
|
|
|
|
</div><!-- end header -->
|
|
|
|
<div id="content">
|
|
<h1><?php get_page_title(); ?></h1>
|
|
<div id="page-content">
|
|
<div class="page-text">
|
|
<?php get_page_content(); ?>
|
|
<p class="page-meta">Published on <span><?php get_page_date('F jS, Y'); ?></span></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
<div class="section">
|
|
<?php get_component('sidebar'); ?>
|
|
</div>
|
|
<div class="section credits">
|
|
<p><?php echo date('Y'); ?> - <strong><?php get_site_name(); ?></strong></p>
|
|
<p>
|
|
Cardinal Theme by <a href="http://www.cagintranet.com" >Cagintranet</a><br />
|
|
<?php get_site_credits(); ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php get_footer(); ?>
|
|
|
|
</div><!-- end wrapper -->
|
|
</body>
|
|
</html>
|