Created
October 18, 2013 15:04
-
-
Save michellemhey/7042922 to your computer and use it in GitHub Desktop.
page.tpl.php for urgentteam
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//kpr(get_defined_vars()); | |
//kpr($theme_hook_suggestions); | |
//template naming | |
//page--[CONTENT TYPE].tpl.php | |
?> | |
<?php if( theme_get_setting('mothership_poorthemers_helper') ){ ?> | |
<!-- page.tpl.php--> | |
<?php } ?> | |
<?php print $mothership_poorthemers_helper; ?> | |
<header role="banner"> | |
<div class="siteinfo"> | |
<?php if ($logo): ?> | |
<figure> | |
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"> | |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /> | |
</a> | |
</figure> | |
<?php endif; ?> | |
<?php if($site_name OR $site_slogan ): ?> | |
<hgroup> | |
<?php if($site_name): ?> | |
<h1><?php print $site_name; ?></h1> | |
<?php endif; ?> | |
<?php if ($site_slogan): ?> | |
<h2><?php print $site_slogan; ?></h2> | |
<?php endif; ?> | |
</hgroup> | |
<?php endif; ?> | |
</div> | |
<?php if($page['header']): ?> | |
<div class="header-region"> | |
<button class="navbar-toggle"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
</div> | |
<div class="navbar-collapse"> | |
<?php print render($page['header']); ?> | |
</div> | |
<div class="navbar-buttons"> | |
<a href="#"><div class="navbar-btn-left">Patient Forms</div></a> | |
<a href="#"><div class="navbar-btn-right">Pay Your Bill</div></a> | |
</div> | |
<?php endif; ?> | |
</header> | |
<div class="page"> | |
<div role="main" id="main-content"> | |
<?php print render($title_prefix); ?> | |
<?php if ($title): ?> | |
<h1><?php print $title; ?></h1> | |
<?php endif; ?> | |
<?php print render($title_suffix); ?> | |
<?php print $breadcrumb; ?> | |
<?php if ($action_links): ?> | |
<ul class="action-links"><?php print render($action_links); ?></ul> | |
<?php endif; ?> | |
<?php if (isset($tabs['#primary'][0]) || isset($tabs['#secondary'][0])): ?> | |
<nav class="tabs"><?php print render($tabs); ?></nav> | |
<?php endif; ?> | |
<?php if($page['highlighted'] OR $messages){ ?> | |
<div class="drupal-messages"> | |
<?php print render($page['highlighted']); ?> | |
<?php print $messages; ?> | |
</div> | |
<?php } ?> | |
<?php print render($page['content_pre']); ?> | |
<?php print render($page['content']); ?> | |
<?php print render($page['content_post']); ?> | |
</div><!-- /main--> | |
<?php if ($page['sidebar_first']): ?> | |
<div class="sidebar-first"> | |
<?php print render($page['sidebar_first']); ?> | |
</div> | |
<?php endif; ?> | |
<?php if ($page['sidebar_second']): ?> | |
<div class="sidebar-second"> | |
<?php print render($page['sidebar_second']); ?> | |
</div> | |
<?php endif; ?> | |
</div><!-- /page--> | |
<footer role="contentinfo"> | |
<div class="footer-top"> | |
<div class="footer-container"> | |
<div class="footer-col-first"> | |
<h5>Our Services</h5> | |
<ul class="footer-list"> | |
<li>Urgent Care</li> | |
<li>Well Care</li> | |
<li>Physicals</li> | |
<li>Health Tests</li> | |
<li>Testing Panels</li> | |
<li>Immunizations</li> | |
<li>Travel Medicine</li> | |
<li>Occupational Health</li> | |
</ul> | |
</div> | |
<div class="footer-col"> | |
<h5>Who We Are</h5> | |
<ul class="footer-list"> | |
<li>Leadership</li> | |
<li>Testimonials</li> | |
<li>Community Support</li> | |
<li>Company History</li> | |
</ul> | |
<h5>Urgent Team</h5> | |
<ul class="footer-list"> | |
<li>Our Locations</li> | |
<li>Join Our Team</li> | |
<li>Contact Us</li> | |
<li>News</li> | |
</ul> | |
</div> | |
<div class="footer-col"> | |
<h5>Talk To Us</h5> | |
<ul class="footer-list"> | |
<li>1.855.493.5566</li> | |
<li>Email Us</li> | |
</ul> | |
<h5>Social</h5> | |
<ul class="footer-list"> | |
<li>twitter_icon</li> | |
<li>facebook_icon</li> | |
<li>linkedin_icon</li> | |
<li>g+_icon</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<div class="footer-bottom"> | |
<?php print render($page['footer']); ?> | |
</div> | |
</footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment