base.twig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% block html_head_container %}
  2. {% include 'html-header.twig' %}
  3. {% block head %}{% endblock %}
  4. </head>
  5. {% endblock %}
  6. <body class="container-fluid {{post.slug}} {{post.post_type}}">
  7. <header class="fixed-top d-flex">
  8. {% block header %}
  9. {% include "components/header.twig" %}
  10. {% endblock %}
  11. </header>
  12. {% if post.slug == "accueil" %}
  13. {% include "components/hero.twig" %}
  14. {% endif %}
  15. {% if post.slug == "privacy-policy" %}
  16. <figure class="paralax" data-rellax-speed="5">
  17. <img src="{{theme.link}}/asset/images/objet_8.svg" alt="objet 8">
  18. </figure>
  19. {% endif %}
  20. <main id="content" class="container px-0" role="main">
  21. {% if title %}
  22. <h1>{{title}}</h1>
  23. {% endif %}
  24. {# <div class="wrapper {{sidebar_class}}"> #}
  25. {% block content %}{% endblock %}
  26. {# </div> #}
  27. {% if sidebar %}
  28. <aside class="layout-sidebar">
  29. {{sidebar}}
  30. </aside>
  31. {% endif %}
  32. </main>
  33. {% block footer %}
  34. <footer class="row">
  35. {% include 'components/footer.twig' %}
  36. </footer>
  37. {{ function('wp_footer') }}
  38. {% endblock %}
  39. </body>
  40. </html>