| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"> 4 5 <head> 6 <?php print $head ?> 7 <title><?php print $head_title ?></title> 8 <?php print $styles ?> 9 <?php print $scripts ?> 10 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script> 11 </head> 12 13 <body> 14 15 <table border="0" cellpadding="0" cellspacing="0" id="header"> 16 <tr> 17 <td id="logo"> 18 <?php if ($logo) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?> 19 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?> 20 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?> 21 </td> 22 <td id="menu"> 23 <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?><?php } ?> 24 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?> 25 <?php print $search_box ?> 26 </td> 27 </tr> 28 <tr> 29 <td colspan="2"><div><?php print $header ?></div></td> 30 </tr> 31 </table> 32 33 <table border="0" cellpadding="0" cellspacing="0" id="content"> 34 <tr> 35 <?php if ($left) { ?><td id="sidebar-left"> 36 <?php print $left ?> 37 </td><?php } ?> 38 <td valign="top"> 39 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?> 40 <div id="main"> 41 <?php print $breadcrumb ?> 42 <h1 class="title"><?php print $title ?></h1> 43 <div class="tabs"><?php print $tabs ?></div> 44 <?php if ($show_messages) { print $messages; } ?> 45 <?php print $help ?> 46 <?php print $content; ?> 47 <?php print $feed_icons; ?> 48 </div> 49 </td> 50 <?php if ($right) { ?><td id="sidebar-right"> 51 <?php print $right ?> 52 </td><?php } ?> 53 </tr> 54 </table> 55 56 <div id="footer"> 57 <?php print $footer_message ?> 58 <?php print $footer ?> 59 </div> 60 <?php print $closure ?> 61 </body> 62 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |