page.html.twig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a single page.
  5. *
  6. * The doctype, html, head and body tags are not in this template. Instead they
  7. * can be found in the html.html.twig template in this directory.
  8. *
  9. * Available variables:
  10. *
  11. * General utility variables:
  12. * - base_path: The base URL path of the Drupal installation. Will usually be
  13. * "/" unless you have installed Drupal in a sub-directory.
  14. * - is_front: A flag indicating if the current page is the front page.
  15. * - logged_in: A flag indicating if the user is registered and signed in.
  16. * - is_admin: A flag indicating if the user has permission to access
  17. * administration pages.
  18. *
  19. * Site identity:
  20. * - front_page: The URL of the front page. Use this instead of base_path when
  21. * linking to the front page. This includes the language domain or prefix.
  22. *
  23. * Page content (in order of occurrence in the default page.html.twig):
  24. * - messages: Status and error messages. Should be displayed prominently.
  25. * - node: Fully loaded node, if there is an automatically-loaded node
  26. * associated with the page and the node ID is the second argument in the
  27. * page's path (e.g. node/12345 and node/12345/revisions, but not
  28. * comment/reply/12345).
  29. *
  30. * Regions:
  31. * FIXME Update for DR821.
  32. * - page.header: Items for the header region.
  33. * - page.primary_menu: Items for the primary menu region.
  34. * - page.secondary_menu: Items for the secondary menu region.
  35. * - page.highlighted: Items for the highlighted content region.
  36. * - page.help: Dynamic help text, mostly for admin pages.
  37. * - page.content: The main content of the current page.
  38. * - page.sidebar_first: Items for the first sidebar.
  39. * - page.sidebar_second: Items for the second sidebar.
  40. * - page.footer: Items for the footer region.
  41. * - page.breadcrumb: Items for the breadcrumb region.
  42. *
  43. * @see template_preprocess_page()
  44. * @see html.html.twig
  45. */
  46. #}
  47. <div class="layout-container container">
  48. <header role="banner" class="row">
  49. <div class="col-md-4">
  50. {{ page.header }}
  51. </div>
  52. <div class="col-md-8">
  53. {{ page.secondary_menu }}
  54. <hr />
  55. {{ page.primary_menu }}
  56. </div>
  57. </header>
  58. <div class="row">
  59. <div class="col-md-12">
  60. {{ page.breadcrumb }}
  61. </div>
  62. </div>
  63. <div class="row">
  64. <div class="col-md-12">
  65. {{ page.highlighted }}
  66. </div>
  67. </div>
  68. <div class="row">
  69. <div class="col-md-12">
  70. {{ page.help }}
  71. </div>
  72. </div>
  73. {% if page.featured_top %}
  74. <div class="featured-top row">
  75. <aside class="featured-top__inner section layout-container clearfix col-md-12" role="complementary">
  76. {{ page.featured_top }}
  77. </aside>
  78. </div>
  79. {% endif %}
  80. <main role="main" class="row">
  81. <a id="main-content" tabindex="-1"></a>{# link is in html.html.twig #}
  82. {% if page.sidebar_first %}
  83. <div class="zlayout-content col-md-8">
  84. {{ page.content }}
  85. </div>{# /.layout-content #}
  86. <aside class="zlayout-sidebar-first col-md-4" role="complementary">
  87. {{ page.sidebar_first }}
  88. </aside>
  89. {% else %}
  90. <div class="zlayout-content col-md-12">
  91. {{ page.content }}
  92. </div>{# /.layout-content #}
  93. {% endif %}
  94. </main>
  95. {% if page.featured_bottom_first or page.featured_bottom_second or page.featured_bottom_third %}
  96. <div class="featured-bottom">
  97. <aside class="layout-container clearfix row" role="complementary">
  98. <div class="col-md-4">{{ page.featured_bottom_first }}</div>
  99. <div class="col-md-4">{{ page.featured_bottom_second }}</div>
  100. <div class="col-md-4">{{ page.featured_bottom_third }}</div>
  101. </aside>
  102. </div>
  103. {% endif %}
  104. {% if page.footer_first or page.footer_second or page.footer_third or page.footer_fourth %}
  105. <footer role="contentinfo" class="row">
  106. <div class="col-md-3">{{ page.footer_first }}</div>
  107. <div class="col-md-3">{{ page.footer_second }}</div>
  108. <div class="col-md-3">{{ page.footer_third }}</div>
  109. <div class="col-md-3">{{ page.footer_fourth }}</div>
  110. </footer>
  111. {% endif %}
  112. {% if page.legalese_first or page.legalese_second %}
  113. <footer role="contentinfo" class="row">
  114. <div class="col-md-6">{{ page.legalese_first }}</div>
  115. <div class="col-md-6">{{ page.legalese_second }}</div>
  116. </footer>
  117. {% endif %}
  118. </div>{# /.layout-container #}