12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
-
- <div class="layout-container">
-
- <header role="banner">
- <section id="header-top">
- {{ page.header_top_left }}
- {{ page.header_top_rigth }}
- </section>
- {{ page.header_bottom }}
- </header>
- {{ page.help }}
- <main role="main">
- <a id="main-content" tabindex="-1"></a>
- <div class="layout-content">
- {{ page.content }}
- </div>
- {% if page.sidebar_first %}
- <aside class="layout-sidebar-first" role="complementary">
- {{ page.sidebar_first }}
- </aside>
- {% endif %}
- {% if page.sidebar_second %}
- <aside class="layout-sidebar-second" role="complementary">
- {{ page.sidebar_second }}
- </aside>
- {% endif %}
- </main>
- <footer role="contentinfo">
- {{ page.footer_top }}
- <section id="fotter-bottom">
- {{ page.footer_bottom_left }}
- {{ page.footer_bottom_middle }}
- {{ page.footer_bottom_right }}
- </section>
- </footer>
- </div>
|