1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {% block html_head_container %}
- {% include 'html-header.twig' %}
- {% block head %}
- {% endblock %}
- </head>
- {% endblock %}
- <body class="{{body_class}} container-md" data-template="base.twig">
- <a class="skip-link screen-reader-text" href="#content">{{ _e( 'Skip to content') }}</a>
- <header class="header nav">
- {% block header %}
- <div class="logoLamine">
- <h1 class="hdr-logo" role="banner">
- {#<a class="hdr-logo-link" href="{{site.url}}" rel="home">{{site.name}}</a>#}
- <a class="hdr-logo-link" href="{{site.accueil}}" rel="home">{{site.name}}</a>
- </h1>
- </div>
- <nav id="nav-main" class="nav-main" role="navigation">
- {% include "menu.twig" with {'items': menu.get_items} %}
- </nav><!-- #nav -->
- {% endblock %}
- </header>
- <section id="content" role="main" class="content-wrapper">
- {% if title %}<h1>{{title}}</h1>{% endif %}
- <div class="wrapper {{sidebar_class}}">
- {% block content %}
- Sorry, no content
- {% endblock %}
- </div>
- {% if sidebar %}
- <aside class="layout-sidebar">
- {{sidebar}}
- </aside>
- {% endif %}
- </section>
- {% block footer %}
- <footer id="footer">
- {% include 'footer.twig' %}
- </footer>
- {{ function('wp_footer') }}
- {% endblock %}
- </body>
- </html>
|