This commit is contained in:
2025-07-21 18:39:34 +02:00
parent a306c77209
commit 4142bc7b75
18 changed files with 1824 additions and 582 deletions
@@ -42,6 +42,7 @@
<js-placeholder token="{{ placeholder_token }}">
</head>
<body{{ attributes.addClass(body_classes) }}>
{#
Keyboard navigation/accessibility link to main content section in
page.html.twig.
@@ -30,50 +30,59 @@
* @see html.html.twig
*/
#}
<div class="layout-container">
<header role="banner">
<section id="header-top">
{{ page.header_top_left }}
{{ page.header_top_rigth }}
</section>
{{ page.header_bottom }}
</header>
<div class="layout-container">
{{ page.help }}
<main role="main">
<a id="main-content" tabindex="-1"></a>{# link is in html.html.twig #}
<header role="banner" class="no-print">
<section id="header-top">
{{ page.header_top_left }}
{{ page.header_top_rigth }}
</section>
{{ page.header_bottom }}
</header>
<div class="layout-content">
{{ page.content }}
</div>{# /.layout-content #}
<div class="print_only cover no-print-after">{# div pour couverture print only #}
{{ page.header_top_left }}
{{ page.header_top_rigth }}
</div>
{% if page.sidebar_first %}
<aside class="layout-sidebar-first" role="complementary">
{{ page.sidebar_first }}
</aside>
{% endif %}
{{ page.help }}
{% if page.sidebar_second %}
<aside class="layout-sidebar-second" role="complementary">
{{ page.sidebar_second }}
</aside>
{% endif %}
<main role="main">
<a id="main-content" tabindex="-1"></a>{# link is in html.html.twig #}
</main>
<div class="layout-content">
{{ page.content }}
</div>{# /.layout-content #}
<footer role="contentinfo">
{{ page.footer_top }}
<section id="fotter-bottom">
{% 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" class="no-print">
{{ page.footer_top }}
<section id="fotter-bottom">
{{ page.footer_bottom_left }}
{{ page.footer_bottom_middle }}
{{ page.footer_bottom_right }}
</section>
</footer>
<div class="print_only back-cover no-print-after">{# div pour 4eme de couverture print only #}
{{ page.footer_bottom_left }}
{{ page.footer_bottom_middle }}
{{ page.footer_bottom_right }}
</section>
</footer>
</div>{# /.layout-container #}
</div>
</div>{# /.layout-container #}