
tast
By: a guest on
May 15th, 2012 | syntax:
PHP | size: 1.24 KB | hits: 19 | expires: Never
<?php
/**
* @file
* Contains the template code for generating pages.
* @author Business InCYte, ajw
*/
?>
<?php if ($page['primary_menu']): ?>
<div id="top-menu1">
<?php print render($page['primary_menu']); ?>
</div>
<?php endif; ?>
<?php if ($page['secondary_menu']): ?>
<div id="top-menu2">
<?php print render($page['secondary_menu']); ?>
</div>
<?php endif; ?>
<?php if ($logo): ?>
<div id="logo">
<a href="<?php print $front_page; ?>">
<img src="<?php print $logo; ?>" alt="CySpecials.com" />
</a>
</div>
<?php endif; ?>
<div id="wrapper">
<div id="main">
<?php if (!empty($tabs['#primary']) || !empty($tabs['#secondary'])): ?>
<div id="tabs">
<?php print render($tabs); ?>
</div>
<?php endif; ?>
<?php if ($messages): ?>
<div id="messages">
<?php print $messages; ?>
</div>
<?php endif; ?>
<?php if (!$is_front && $title): ?>
<h3 id="title"><?php print $title;?></h3>
<?php endif; ?>
<?php print render($page['content']); ?>
</div>
</div>
<div id="footsy">
© 2011 Business InCYte.
<?php
if (module_exists('contact')):
?>
<a href="<?php print url('contact'); ?>" title="Contact the people who made this thing!">Contact us!</a>
<?php endif; ?>
</div>