123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <div class="layout-container">
- <header role="banner" class="container-fluid">
- {{ page.header }}
- </header>
- {{ page.primary_menu }}
- {{ page.secondary_menu }}
- {{ page.breadcrumb }}
- {{ page.highlighted }}
- {{ page.help }}
- <main role="main">
- <a id="main-content" tabindex="-1"></a>
- {% if page.filter %}
- <section class="container" role="complementary">
- {{ page.filter }}
- </section>
- {% endif %}
- <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>
- {% if page.footer %}
- <footer role="contentinfo" class="container-fluid">
- {{ page.footer }}
- </footer>
- {% endif %}
- </div>
|