259 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			259 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Default theme implementation to display a single Drupal page.
 | 
						|
 *
 | 
						|
 * Available variables:
 | 
						|
 *
 | 
						|
 * General utility variables:
 | 
						|
 * - $base_path: The base URL path of the Drupal installation. At the very
 | 
						|
 *   least, this will always default to /.
 | 
						|
 * - $directory: The directory the template is located in, e.g. modules/system
 | 
						|
 *   or themes/garland.
 | 
						|
 * - $is_front: TRUE if the current page is the front page.
 | 
						|
 * - $logged_in: TRUE if the user is registered and signed in.
 | 
						|
 * - $is_admin: TRUE if the user has permission to main-menu administration pages.
 | 
						|
 *
 | 
						|
 * Site identity:
 | 
						|
 * - $front_page: The URL of the front page. Use this instead of $base_path,
 | 
						|
 *   when linking to the front page. This includes the language domain or
 | 
						|
 *   prefix.
 | 
						|
 * - $logo: The path to the logo image, as defined in theme configuration.
 | 
						|
 * - $site_name: The name of the site, empty when display has been disabled
 | 
						|
 *   in theme settings.
 | 
						|
 * - $site_slogan: The slogan of the site, empty when display has been disabled
 | 
						|
 *   in theme settings.
 | 
						|
 *
 | 
						|
 * Navigation:
 | 
						|
 * - $main_menu (array): An array containing the Main menu links for the
 | 
						|
 *   site, if they have been configured.
 | 
						|
 * - $secondary_menu (array): An array containing the Secondary menu links for
 | 
						|
 *   the site, if they have been configured.
 | 
						|
 * - $breadcrumb: The breadcrumb trail for the current page.
 | 
						|
 *
 | 
						|
 * Page content (in order of occurrence in the default page.tpl.php):
 | 
						|
 * - $title_prefix (array): An array containing additional output populated by
 | 
						|
 *   modules, intended to be displayed in front of the main title tag that
 | 
						|
 *   appears in the template.
 | 
						|
 * - $title: The page title, for use in the actual HTML content.
 | 
						|
 * - $title_suffix (array): An array containing additional output populated by
 | 
						|
 *   modules, intended to be displayed after the main title tag that appears in
 | 
						|
 *   the template.
 | 
						|
 * - $messages: HTML for status and error messages. Should be displayed
 | 
						|
 *   prominently.
 | 
						|
 * - $tabs (array): Tabs linking to any sub-pages beneath the current page
 | 
						|
 *   (e.g., the view and edit tabs when displaying a node).
 | 
						|
 * - $action_links (array): Actions local to the page, such as 'Add menu' on the
 | 
						|
 *   menu administration interface.
 | 
						|
 * - $feed_icons: A string of all feed icons for the current page.
 | 
						|
 * - $node: The node object, if there is an automatically-loaded node
 | 
						|
 *   associated with the page, and the node ID is the second argument
 | 
						|
 *   in the page's path (e.g. node/12345 and node/12345/revisions, but not
 | 
						|
 *   comment/reply/12345).
 | 
						|
 *
 | 
						|
 * Regions:
 | 
						|
 * - $page['help']: Dynamic help text, mostly for admin pages.
 | 
						|
 * - $page['content']: The main content of the current page.
 | 
						|
 * - $page['sidebar_first']: Items for the first sidebar.
 | 
						|
 * - $page['sidebar_second']: Items for the second sidebar.
 | 
						|
 * - $page['header']: Items for the header region.
 | 
						|
 * - $page['footer']: Items for the footer region.
 | 
						|
 *
 | 
						|
 * @see template_preprocess()
 | 
						|
 * @see template_preprocess_page()
 | 
						|
 * @see template_process()
 | 
						|
 */
 | 
						|
?>
 | 
						|
 | 
						|
<div class="wrap">
 | 
						|
  
 | 
						|
<div id="header_wrapper">
 | 
						|
 | 
						|
  <div class="user-menu-wrapper">
 | 
						|
    <div class="full-wrap">
 | 
						|
      <?php print render($page['user_menu']) ?>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
 | 
						|
  <header id="header" role="banner">
 | 
						|
 | 
						|
    <div class="top_left">
 | 
						|
 | 
						|
      <?php if ($logo): ?>
 | 
						|
        <div id="logo">
 | 
						|
          <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>">
 | 
						|
            <img src="<?php print $logo; ?>"/>
 | 
						|
          </a>
 | 
						|
        </div>
 | 
						|
      <?php endif; ?>
 | 
						|
 | 
						|
      <h1 id="site-title">
 | 
						|
        <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a>
 | 
						|
        <div id="site-description"><?php print $site_slogan; ?></div>
 | 
						|
      </h1>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="top_right">
 | 
						|
    
 | 
						|
      <nav id="main-menu"  role="navigation">
 | 
						|
        <a class="nav-toggle" href="#">Navigation</a>
 | 
						|
        <div class="menu-navigation-container">
 | 
						|
          <?php 
 | 
						|
            $main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu')); 
 | 
						|
            print drupal_render($main_menu_tree);
 | 
						|
          ?>
 | 
						|
        </div>
 | 
						|
        <div class="clear"></div>
 | 
						|
      </nav><!-- end main-menu -->
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
  <div class="clear"></div>
 | 
						|
 | 
						|
  </header>
 | 
						|
 | 
						|
 | 
						|
  
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
 
 | 
						|
  <?php print render($page['slideshow']); ?>
 | 
						|
 | 
						|
  <?php print render($page['front_welcome']); ?>  
 | 
						|
         
 | 
						|
  <?php if ($page['top_first'] || $page['top_second'] || $page['top_third']): ?> 
 | 
						|
    <div id="top-area" class="clearfix">
 | 
						|
      <?php if ($page['top_first']): ?>
 | 
						|
      <div class="column"><?php print render($page['top_first']); ?></div>
 | 
						|
      <?php endif; ?>
 | 
						|
      <?php if ($page['top_second']): ?>
 | 
						|
      <div class="column"><?php print render($page['top_second']); ?></div>
 | 
						|
      <?php endif; ?>
 | 
						|
      <?php if ($page['top_third']): ?>
 | 
						|
      <div class="column"><?php print render($page['top_third']); ?></div>
 | 
						|
      <?php endif; ?>
 | 
						|
    </div>
 | 
						|
  <?php endif; ?>
 | 
						|
   
 | 
						|
 | 
						|
 | 
						|
 | 
						|
  <div id="container">
 | 
						|
 | 
						|
  <div class="container-wrap">
 | 
						|
 | 
						|
        <div class="content-sidebar-wrap">
 | 
						|
 | 
						|
        <div id="content">
 | 
						|
          
 | 
						|
          <?php if (theme_get_setting('breadcrumbs', 'metro_zymphonies_theme')): ?><div id="breadcrumbs"><?php if ($breadcrumb): print $breadcrumb; endif;?></div><?php endif; ?>
 | 
						|
 | 
						|
          <section id="post-content" role="main">
 | 
						|
            <?php print $messages; ?>
 | 
						|
            <?php print render($title_prefix); ?>
 | 
						|
            <?php if ($title): ?><h1 class="page-title"><?php print $title; ?> <a href="https://twitter.com/share" class="twitter-share-button" data-via="nplainsathletes">Tweet</a>
 | 
						|
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></h1><?php endif; ?>
 | 
						|
            <?php print render($title_suffix); ?>
 | 
						|
            <?php if (!empty($tabs['#primary'])): ?><div class="tabs-wrapper"><?php print render($tabs); ?></div><?php endif; ?>
 | 
						|
            <?php print render($page['help']); ?>
 | 
						|
            <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
 | 
						|
            <?php print render($page['content']); ?>
 | 
						|
          </section> <!-- /#main -->
 | 
						|
        </div>
 | 
						|
      
 | 
						|
        <?php if ($page['sidebar_first']): ?>
 | 
						|
          <aside id="sidebar-first" role="complementary">
 | 
						|
            <?php print render($page['sidebar_first']); ?>
 | 
						|
          </aside>  <!-- /#sidebar-first -->
 | 
						|
        <?php endif; ?>
 | 
						|
      
 | 
						|
        </div>
 | 
						|
 | 
						|
        <?php if ($page['sidebar_second']): ?>
 | 
						|
          <aside id="sidebar-second" role="complementary">
 | 
						|
            <?php print render($page['sidebar_second']); ?>
 | 
						|
          </aside>  <!-- /#sidebar-first -->
 | 
						|
        <?php endif; ?>
 | 
						|
 | 
						|
        <?php if ($is_front): ?>
 | 
						|
 | 
						|
        <div id="footer_wrapper" class="footer_block bottom_widget">
 | 
						|
          <?php if ($page['bottom_widget_1'] || $page['bottom_widget_2'] || $page['bottom_widget_3']): ?> 
 | 
						|
            <div id="footer-area" class="clearfix">
 | 
						|
              <?php if ($page['bottom_widget_1']): ?>
 | 
						|
              <div class="column"><?php print render($page['bottom_widget_1']); ?></div>
 | 
						|
              <?php endif; ?>
 | 
						|
              <?php if ($page['bottom_widget_2']): ?>
 | 
						|
              <div class="column"><?php print render($page['bottom_widget_2']); ?></div>
 | 
						|
              <?php endif; ?>
 | 
						|
              <?php if ($page['bottom_widget_3']): ?>
 | 
						|
              <div class="column"><?php print render($page['bottom_widget_3']); ?></div>
 | 
						|
              <?php endif; ?>
 | 
						|
            </div>
 | 
						|
          <?php endif; ?>
 | 
						|
        </div>
 | 
						|
        <?php endif; ?>
 | 
						|
 | 
						|
    </div>
 | 
						|
  
 | 
						|
</div>
 | 
						|
 | 
						|
<?php if ($is_front): ?>
 | 
						|
  <?php print render($page['highlights']); ?>  
 | 
						|
<?php endif; ?>
 | 
						|
 | 
						|
<div id="footer">
 | 
						|
  <div id="footer_wrapper">
 | 
						|
    <?php if ($page['footer_first'] || $page['footer_second'] || $page['footer_third'] || $page['footer_forth']): ?> 
 | 
						|
      <div id="footer-area" class="clearfix">
 | 
						|
        <?php if ($page['footer_first']): ?>
 | 
						|
        <div class="column"><?php print render($page['footer_first']); ?></div>
 | 
						|
        <?php endif; ?>
 | 
						|
        <?php if ($page['footer_second']): ?>
 | 
						|
        <div class="column"><?php print render($page['footer_second']); ?></div>
 | 
						|
        <?php endif; ?>
 | 
						|
        <?php if ($page['footer_third']): ?>
 | 
						|
        <div class="column"><?php print render($page['footer_third']); ?></div>
 | 
						|
        <?php endif; ?>
 | 
						|
        <?php if ($page['footer_forth']): ?>
 | 
						|
        <div class="column"><?php print render($page['footer_forth']); ?></div>
 | 
						|
        <?php endif; ?>
 | 
						|
      </div>
 | 
						|
    <?php endif; ?>
 | 
						|
  </div>
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="footer_credit">
 | 
						|
 | 
						|
    <!-- Social Links -->
 | 
						|
    <?php if (theme_get_setting('social_links', 'metro_zymphonies_theme')): ?>
 | 
						|
      <div class="social-icons">
 | 
						|
       <ul>
 | 
						|
        <li><a class="rss" href="<?php print $front_page; ?>rss.xml"><i class="fa fa-rss"></i></a></li>
 | 
						|
        <li><a class="fb" href="<?php echo theme_get_setting('facebook_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-facebook"></i></a></li>
 | 
						|
        <li><a class="twitter" href="<?php echo theme_get_setting('twitter_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-twitter"></i></a></li>
 | 
						|
        <li><a class="gplus" href="<?php echo theme_get_setting('gplus_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-google-plus"></i></a></li>
 | 
						|
        <li><a class="linkedin" href="<?php echo theme_get_setting('linkedin_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-linkedin"></i></a></li>
 | 
						|
        <li><a class="pinterest" href="<?php echo theme_get_setting('pinterest_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-pinterest"></i></a></li>
 | 
						|
        <li><a class="youtube" href="<?php echo theme_get_setting('youtube_profile_url', 'metro_zymphonies_theme'); ?>" target="_blank" rel="me"><i class="fa fa-youtube"></i></a></li>
 | 
						|
       </ul>
 | 
						|
      </div>
 | 
						|
    <?php endif; ?>
 | 
						|
      
 | 
						|
    <div id="copyright">
 | 
						|
      <p class="copyright">
 | 
						|
        <?php print t('Copyright'); ?> © <?php echo date("Y"); ?>, <?php print $site_name; ?> </p> 
 | 
						|
      <p class="credits"> <?php print t('Designed by'); ?>  <a href="http://www.zymphonies.com">Zymphonies</a></p>
 | 
						|
      <div class="clear"></div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
 |