
LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
27 lines
813 B
PHP
27 lines
813 B
PHP
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
|
|
/****************************************************
|
|
*
|
|
* @File: footer.inc.php
|
|
* @Package: GetSimple
|
|
* @Action: Innovation theme for GetSimple CMS
|
|
*
|
|
*****************************************************/
|
|
?>
|
|
|
|
<!-- site footer -->
|
|
<footer class="clearfix" >
|
|
|
|
<?php get_footer(); ?>
|
|
|
|
<!--
|
|
Theme Credits
|
|
Please consider keeping the links to the developer and GetSimple if you use this theme
|
|
-->
|
|
<div class="wrapper">
|
|
<div class="left"><?php echo date('Y'); ?> <a href="<?php get_site_url(); ?>" ><?php get_site_name(); ?></a></div>
|
|
<div class="right">Innovation Theme by <a href="http://www.cagintranet.com" >Cagintranet</a> · <?php get_site_credits(); ?></div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|