page.tpl.php

  1. drupal
    1. 4.7 themes/bluemarine/page.tpl.php
    2. 4.7 themes/pushbutton/page.tpl.php
    3. 5 themes/bluemarine/page.tpl.php
    4. 5 themes/garland/page.tpl.php
    5. 5 themes/pushbutton/page.tpl.php
    6. 6 modules/system/page.tpl.php
    7. 6 themes/bluemarine/page.tpl.php
    8. 6 themes/pushbutton/page.tpl.php
    9. 6 themes/garland/page.tpl.php
    10. 7 modules/system/page.tpl.php
    11. 7 modules/block/tests/themes/block_test_theme/page.tpl.php
    12. 7 themes/bartik/templates/page.tpl.php
    13. 7 themes/garland/page.tpl.php
    14. 7 themes/seven/page.tpl.php
    15. 8 core/modules/block/tests/themes/block_test_theme/page.tpl.php
    16. 8 core/themes/bartik/templates/page.tpl.php
    17. 8 core/themes/seven/page.tpl.php
    18. 8 core/modules/system/page.tpl.php

2 theme calls to page.tpl.php

File

themes/pushbutton/page.tpl.php
View source
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
  3. <head>
  4. <title><?php print $head_title ?></title>
  5. <meta http-equiv="Content-Style-Type" content="text/css" />
  6. <?php print $head ?>
  7. <?php print $styles ?>
  8. </head>
  9. <body bgcolor="#ffffff">
  10. <div class="hide"><a href="#content" title="<?php print t('Skip navigation') ?>." accesskey="2"><?php print t('Skip navigation') ?></a>.</div>
  11. <table id="primary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
  12. <tr>
  13. <td id="home" width="10%">
  14. <?php if ($logo) : ?>
  15. <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" /></a>
  16. <?php endif; ?>
  17. </td>
  18. <td id="site-info" width="20%">
  19. <?php if ($site_name) : ?>
  20. <div class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a></div>
  21. <?php endif;?>
  22. <?php if ($site_slogan) : ?>
  23. <div class='site-slogan'><?php print($site_slogan) ?></div>
  24. <?php endif;?>
  25. </td>
  26. <td class="primary-links" width="70%" align="center" valign="middle">
  27. <?php print theme('links', $primary_links) ?>
  28. </td>
  29. </tr>
  30. </table>
  31. <table id="secondary-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
  32. <tr>
  33. <td class="secondary-links" width="75%" align="center" valign="middle">
  34. <?php print theme('links', $secondary_links) ?>
  35. </td>
  36. <td width="25%" align="center" valign="middle">
  37. <?php print $search_box ?>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td colspan="2"><div><?php print $header ?></div></td>
  42. </tr>
  43. </table>
  44. <table id="content" border="0" cellpadding="15" cellspacing="0" width="100%">
  45. <tr>
  46. <?php if ($sidebar_left != ""): ?>
  47. <td id="sidebar-left">
  48. <?php print $sidebar_left ?>
  49. </td>
  50. <?php endif; ?>
  51. <td valign="top">
  52. <?php if ($mission != ""): ?>
  53. <div id="mission"><?php print $mission ?></div>
  54. <?php endif; ?>
  55. <div id="main">
  56. <?php if ($title != ""): ?>
  57. <?php print $breadcrumb ?>
  58. <h1 class="title"><?php print $title ?></h1>
  59. <?php if ($tabs != ""): ?>
  60. <div class="tabs"><?php print $tabs ?></div>
  61. <?php endif; ?>
  62. <?php endif; ?>
  63. <?php if ($help != ""): ?>
  64. <div id="help"><?php print $help ?></div>
  65. <?php endif; ?>
  66. <?php if ($messages != ""): ?>
  67. <?php print $messages ?>
  68. <?php endif; ?>
  69. <!-- start main content -->
  70. <?php print($content) ?>
  71. <!-- end main content -->
  72. </div><!-- main -->
  73. </td>
  74. <?php if ($sidebar_right != ""): ?>
  75. <td id="sidebar-right">
  76. <?php print $sidebar_right ?>
  77. </td>
  78. <?php endif; ?>
  79. </tr>
  80. </table>
  81. <table id="footer-menu" summary="Navigation elements." border="0" cellpadding="0" cellspacing="0" width="100%">
  82. <tr>
  83. <td align="center" valign="middle">
  84. <?php if (isset($primary_links)) : ?>
  85. <div class="primary-links">
  86. <?php print theme('links', $primary_links) ?>
  87. </div>
  88. <?php endif; ?>
  89. <?php if (isset($secondary_links)) : ?>
  90. <div class="secondary-links">
  91. <?php print theme('links', $secondary_links) ?>
  92. </div>
  93. <?php endif; ?>
  94. </td>
  95. </tr>
  96. </table>
  97. <?php if ($footer_message) : ?>
  98. <div id="footer-message">
  99. <p><?php print $footer_message;?></p>
  100. </div>
  101. <?php endif; ?>
  102. <?php print $closure;?>
  103. </body>
  104. </html>
Login or register to post comments