Don't like ads? PRO users don't see any ads ;-)
Guest

tast

By: a guest on May 15th, 2012  |  syntax: PHP  |  size: 1.24 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. /**
  3.  * @file
  4.  * Contains the template code for generating pages.
  5.  * @author Business InCYte, ajw
  6.  */
  7. ?>
  8. <?php if ($page['primary_menu']): ?>
  9. <div id="top-menu1">
  10.   <?php print render($page['primary_menu']); ?>
  11. </div>
  12. <?php endif; ?>
  13.  
  14. <?php if ($page['secondary_menu']): ?>
  15. <div id="top-menu2">
  16.   <?php print render($page['secondary_menu']); ?>
  17. </div>
  18. <?php endif; ?>
  19.  
  20. <?php if ($logo): ?>
  21.   <div id="logo">
  22.     <a href="<?php print $front_page; ?>">
  23.       <img src="<?php print $logo; ?>" alt="CySpecials.com" />
  24.     </a>
  25.   </div>
  26. <?php endif; ?>
  27.  
  28. <div id="wrapper">
  29. <div id="main">
  30. <?php if (!empty($tabs['#primary']) || !empty($tabs['#secondary'])): ?>
  31.   <div id="tabs">
  32.     <?php print render($tabs); ?>
  33.   </div>
  34. <?php endif; ?>
  35. <?php if ($messages): ?>
  36.   <div id="messages">
  37.     <?php print $messages; ?>
  38.   </div>
  39. <?php endif; ?>
  40. <?php if (!$is_front && $title): ?>
  41.   <h3 id="title"><?php print $title;?></h3>
  42. <?php endif; ?>
  43.  
  44. <?php print render($page['content']); ?>
  45. </div>
  46. </div>
  47.  
  48. <div id="footsy">
  49. &copy; 2011 Business InCYte.
  50. <?php
  51. if (module_exists('contact')):
  52. ?>
  53. <a href="<?php print url('contact'); ?>" title="Contact the people who made this thing!">Contact us!</a>
  54. <?php endif; ?>
  55. </div>