123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {% block html_head_container %}
- {% include 'html-header.twig' %}
- {% block head %}
- {% endblock %}
- </head>
- {% endblock %}
- <body class="{{body_class}}" data-template="base.twig">
- <a class="skip-link screen-reader-text" href="#content">{{ _e( 'Skip to content') }}</a>
- <header class="header">
- {% block header %}
- <div class="logoLamine">
- <h1 class="hdr-logo" role="banner">
- <a class="hdr-logo-link" href="{{site.url}}" rel="home">{{site.name}}</a>
- </h1>
- <nav id="nav-main" class="nav-main" role="navigation">
- {% include "menu.twig" with {'items': menu.get_items} %}
- </nav><!-- #nav -->
- </div>
- {% 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>
|