123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <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" class="d-flex container">
- <a id="main-content" tabindex="-1"></a>
- <div class="layout-content">
- {{ page.content }}
- </div>
- {% if page.complement_participant %}
- <section class="__ressources" >
- {{ page.complement_participant }}
- </section>
- {% endif %}
- {% if page.sidebar_second %}
- <aside class="layout-sidebar-second col-2" role="complementary">
- {{ page.sidebar_second }}
- </aside>
- {% endif %}
- </main>
- {% if page.footer %}
- <footer role="contentinfo" class="container-fluid">
- {{ page.footer }}
- </footer>
- {% endif %}
- </div>
|