base.twig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% block html_head_container %}
  2. {% include 'html-header.twig' %}
  3. {% block head %}
  4. {% endblock %}
  5. </head>
  6. {% endblock %}
  7. <body class="container-fluid" data-template="base.twig">
  8. <header class="header d-flex justify-content-between">
  9. {% block header %}
  10. <div class="logoLamine">
  11. <h1 class="hdr-logo" role="banner">
  12. <a class="hdr-logo-link" href="{{site.url}}" rel="home">{{site.name}}</a>
  13. </h1>
  14. </div>
  15. <div class="rs">
  16. <img src="" alt="">
  17. <img src="" alt="">
  18. </div>
  19. <div class="burger"></div>
  20. <nav id="nav-main" class="nav-main" role="navigation">
  21. {% include "menu.twig" with {'items': menu.get_items} %}
  22. </nav>
  23. {% endblock %}
  24. </header>
  25. {% if post.slug == "accueil" %}
  26. {% include "components/hero/hero.twig" %}
  27. {% endif %}
  28. <section id="content" role="main" class="content-wrapper container-md">
  29. {% if title %}<h1>{{title}}</h1>{% endif %}
  30. <div class="wrapper {{sidebar_class}}">
  31. {% block content %}
  32. {% endblock %}
  33. </div>
  34. {% if sidebar %}
  35. <aside class="layout-sidebar">
  36. {{sidebar}}
  37. </aside>
  38. {% endif %}
  39. </section>
  40. {% block footer %}
  41. <footer id="footer">
  42. {% include 'footer.twig' %}
  43. </footer>
  44. {{ function('wp_footer') }}
  45. {% endblock %}
  46. </body>
  47. </html>