Share Pastebin
Guest
Public paste!

HornCologne

By: a guest | Oct 1st, 2007 | Syntax: HTML | Size: 3.87 KB | Hits: 146 | Expires: Never
Copy text to clipboard
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>" lang="<?php print $language ?>">
  4.   <head>
  5.       <title><?php print $head_title ?></title>
  6.       <?php print $head ?>
  7. <!--  (php tag here)php // print $styles ?>-->
  8. <!-- Stylesheets that would be generated by the $styles function in my install *complete*
  9.  
  10.      <style type="text/css" media="all">@import "/sites/all/modules/devel/devel.css";</style>
  11.      <style type="text/css" media="all">@import "/modules/node/node.css";</style>
  12.      <style type="text/css" media="all">@import "/modules/system/defaults.css";</style>
  13.      <style type="text/css" media="all">@import "/modules/system/system.css";</style>
  14.      <style type="text/css" media="all">@import "/modules/user/user.css";</style>
  15.      <style type="text/css" media="all">@import "/sites/all/modules/calendar/calendar.css";</style>
  16.      <style type="text/css" media="all">@import "/sites/all/modules/cck/content.css";</style>
  17.      <style type="text/css" media="all">@import "/sites/all/modules/date/date.css";</style>
  18.      <style type="text/css" media="all">@import "/sites/all/modules/cck/fieldgroup.css";</style>
  19.      <style type="text/css" media="all">@import "/sites/all/modules/lightbox2/lightbox.css";</style>
  20.      <style type="text/css" media="all">@import "/sites/all/modules/simplemenu/simplemenu.css";</style>
  21.      <style type="text/css" media="all">@import "/sites/all/themes/3cologne_03/style.css";</style>
  22.      <style type="text/css" media="screen">@import "/sites/3cologne.com/files/sifr/sifr-screen.css";</style>
  23.      <style type="text/css" media="print">@import "/sites/all/modules/sifr/sifr/sIFR-print.css";</style>
  24. -->
  25.  
  26. <!-- YUI complete clear + grids CSS - This is supposed to set up all the CSS wizardry that makes my page layout work-->
  27.       <style type="text/css" media="all">@import "/sites/all/themes/3cologne_03/reset-fonts-grids.css";</style>
  28.        
  29.       <?php print $scripts ?>
  30.       <style type="text/css" media="print">@import "<?php print base_path() . path_to_theme() ?>/print.css";</style>
  31.       <!--[if lt IE 7]>
  32.      <style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/fix-ie.css";</style>
  33.      <![endif]-->
  34.   </head>  
  35.    
  36.   <body>
  37.     <div id="doc2" class="yui-t6">
  38.       <div id="hd" class="header">
  39.         <div class="header-logo">
  40.           <img src="<?php print base_path(). path_to_theme(); ?>/images/3cologne-logo.jpg" alt="logo">
  41.         </div>
  42.         <div class="header-navigation">
  43.           <?php
  44.            if ($primary_links) {
  45.            print theme_separated_links($primary_links);
  46.          } ?>
  47.         </div>
  48.       </div>
  49.               <!--end of header area - beginging of content area & main (left) content-->
  50.       <div id="bd">
  51.         <div id="yui-main">
  52.           <div class="yui-b">
  53.             <h1><?php print $title ?></h1>
  54.             <div class="tabs">
  55.               <?php print $tabs ?>
  56.             </div>
  57.             <?php print $help ?>
  58.             <?php print $messages ?>
  59.             <?php print $content; ?>
  60.           </div>
  61.         </div>
  62.               <!--end of main content - beginning of right sidebar content-->      
  63.         <div class="yui-b">
  64.           <?php print $sidebar_right ?>
  65.         </div>
  66.       </div>
  67.               <!--end of content - beginning of footer-->        
  68.       <div id="ft">
  69.         <div id="footer">
  70.           <div id="footer-text">
  71.             copyright &#169; 3cologne 2004-2007 | Design &#169; <a href="http://www.freelab.de" target="_blank">FREElab interfacedesign</a> 2007 | <?php print l('admin', 'user/login'); ?>
  72.           </div>
  73.         </div>
  74.       </div>
  75.               <!--End of footer-->            
  76.     </div>
  77.   <?php print $closure ?>      
  78.   </body>
  79. </html>