page.tpl.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display a single Drupal page.
  5. *
  6. * The doctype, html, head and body tags are not in this template. Instead they
  7. * can be found in the html.tpl.php template in this directory.
  8. *
  9. * Available variables:
  10. *
  11. * General utility variables:
  12. * - $base_path: The base URL path of the Drupal installation. At the very
  13. * least, this will always default to /.
  14. * - $directory: The directory the template is located in, e.g. modules/system
  15. * or themes/bartik.
  16. * - $is_front: TRUE if the current page is the front page.
  17. * - $logged_in: TRUE if the user is registered and signed in.
  18. * - $is_admin: TRUE if the user has permission to access administration pages.
  19. *
  20. * Site identity:
  21. * - $front_page: The URL of the front page. Use this instead of $base_path,
  22. * when linking to the front page. This includes the language domain or
  23. * prefix.
  24. * - $logo: The path to the logo image, as defined in theme configuration.
  25. * - $site_name: The name of the site, empty when display has been disabled
  26. * in theme settings.
  27. * - $site_slogan: The slogan of the site, empty when display has been disabled
  28. * in theme settings.
  29. *
  30. * Navigation:
  31. * - $main_menu (array): An array containing the Main menu links for the
  32. * site, if they have been configured.
  33. * - $secondary_menu (array): An array containing the Secondary menu links for
  34. * the site, if they have been configured.
  35. * - $breadcrumb: The breadcrumb trail for the current page.
  36. *
  37. * Page content (in order of occurrence in the default page.tpl.php):
  38. * - $title_prefix (array): An array containing additional output populated by
  39. * modules, intended to be displayed in front of the main title tag that
  40. * appears in the template.
  41. * - $title: The page title, for use in the actual HTML content.
  42. * - $title_suffix (array): An array containing additional output populated by
  43. * modules, intended to be displayed after the main title tag that appears in
  44. * the template.
  45. * - $messages: HTML for status and error messages. Should be displayed
  46. * prominently.
  47. * - $tabs (array): Tabs linking to any sub-pages beneath the current page
  48. * (e.g., the view and edit tabs when displaying a node).
  49. * - $action_links (array): Actions local to the page, such as 'Add menu' on the
  50. * menu administration interface.
  51. * - $feed_icons: A string of all feed icons for the current page.
  52. * - $node: The node object, if there is an automatically-loaded node
  53. * associated with the page, and the node ID is the second argument
  54. * in the page's path (e.g. node/12345 and node/12345/revisions, but not
  55. * comment/reply/12345).
  56. *
  57. * Regions:
  58. * - $page['help']: Dynamic help text, mostly for admin pages.
  59. * - $page['highlighted']: Items for the highlighted content region.
  60. * - $page['content']: The main content of the current page.
  61. * - $page['sidebar_first']: Items for the first sidebar.
  62. * - $page['sidebar_second']: Items for the second sidebar.
  63. * - $page['header']: Items for the header region.
  64. * - $page['footer']: Items for the footer region.
  65. *
  66. * @see template_preprocess()
  67. * @see template_preprocess_page()
  68. * @see template_process()
  69. * @see html.tpl.php
  70. *
  71. * @ingroup themeable
  72. */
  73. ?>
  74. <div id="page-wrapper">
  75. <div id="page">
  76. <?php include_once "navbar.inc.php"; ?>
  77. <?php /*if ($breadcrumb): ?>
  78. <div id="breadcrumb">
  79. <div class="container">
  80. <div class="row">
  81. <div class="col-12">
  82. <?php print $breadcrumb; ?>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. <?php endif; */ ?>
  88. <div id="main-wrapper">
  89. <div id="main" class="clearfix">
  90. <?php if ($title): ?>
  91. <div class="section page-header">
  92. <div class="container">
  93. <div class="row flex-center">
  94. <div class="col-md-7">
  95. <?php print render($title_prefix); ?>
  96. <h1 class="title" id="page-title">
  97. <?php print $title; ?>
  98. </h1>
  99. <?php print render($title_suffix); ?>
  100. </div>
  101. <div class="col-md-5 es-search-form-in-title">
  102. <?php if ($page['front_search'] && strstr(current_path(), 'tripal_elasticsearch/search_website') === FALSE): ?>
  103. <?php print render($page['front_search']); ?>
  104. <?php endif; ?>
  105. </div>
  106. </div>
  107. </div>
  108. </div><!-- /.section -->
  109. <?php endif; ?>
  110. <div class="section">
  111. <div class="container">
  112. <div class="row">
  113. <?php $main_content_classes = !empty($page['sidebar_first']) || !empty($page['sidebar_second']) ? 'col-sm-8 col-md-9' : 'col-12'; ?>
  114. <div class="<?php print $main_content_classes ?>">
  115. <?php if ($page['highlighted']): ?>
  116. <div id="highlighted"><?php print render($page['highlighted']); ?></div>
  117. <?php endif; ?>
  118. <a id="main-content"></a>
  119. <?php if ($tabs): ?>
  120. <?php print render($tabs); ?>
  121. <?php endif; ?>
  122. <?php print render($page['help']); ?>
  123. <?php if ($action_links): ?>
  124. <ul class="action-links"><?php print render($action_links); ?></ul>
  125. <?php endif; ?>
  126. <?php if ($page['front_search'] && strstr(current_path(), 'tripal_elasticsearch/search_website') !== FALSE): ?>
  127. <div class="mb-1">
  128. <?php print render($page['front_search']); ?>
  129. </div>
  130. <?php endif; ?>
  131. <!--div class="elevated-card<?php $hardwood_set_page_card === TRUE ? print ' card' : '' ?>">
  132. <div class="<?php $hardwood_set_page_card === TRUE ? print 'card-body' : '' ?>"-->
  133. <?php if ($messages): ?>
  134. <?php print $messages; ?>
  135. <?php endif; ?>
  136. <?php print render($page['content']); ?>
  137. <!--/div>
  138. </div-->
  139. <?php print $feed_icons; ?>
  140. </div>
  141. <?php if ($page['sidebar_first'] || $page['sidebar_second']): ?>
  142. <div class="col-sm-4 col-md-3">
  143. <?php if ($page['sidebar_first']): ?>
  144. <div class="card">
  145. <div class="card-body">
  146. <div id="sidebar-first"
  147. class="column sidebar">
  148. <?php print render($page['sidebar_first']); ?>
  149. </div> <!-- /#sidebar-first -->
  150. </div>
  151. </div>
  152. <?php endif; ?>
  153. <?php if ($page['sidebar_second']): ?>
  154. <div class="card">
  155. <div class="card-body">
  156. <div id="sidebar-second"
  157. class="column sidebar">
  158. <?php print render($page['sidebar_second']); ?>
  159. </div> <!-- /#sidebar-second -->
  160. </div>
  161. </div>
  162. <?php endif; ?>
  163. </div>
  164. </div><!-- /.row, .col-sm -->
  165. <?php endif; ?>
  166. </div><!-- /.container -->
  167. </div> <!-- /.section -->
  168. </div>
  169. </div> <!-- /#main, /#main-wrapper -->
  170. <div id="footer" class="secondary-footer">
  171. <div class="container">
  172. <div class="row">
  173. <div class="col-12">
  174. <?php print render($page['footer']); ?>
  175. </div>
  176. </div>
  177. </div>
  178. </div> <!-- /#footer -->
  179. <?php include_once "footer.inc.php"; ?>
  180. </div>
  181. </div> <!-- /#page, /#page-wrapper -->