base.twig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <section class="logo col">
  10. <figure>
  11. <a href="{{site.url}}" rel="noreferrer">
  12. <img src="{{theme.link}}/dist//assets/images/logo_lamine_vect.svg" alt="logo_Lamine" title="Le logo de La mine"/>
  13. <span id="lumiR_logo"></span>
  14. <span id="fond_logo"></span>
  15. </a>
  16. </figure>
  17. </section>
  18. <section class="nav-main col row">
  19. <div class="rs col">
  20. <figure id="facebook">
  21. <a rel="noreferrer" target="_blank" href="{{options.facebook.lien_facebook}}">
  22. <img src="{{theme.link}}/dist//assets/images/fb.svg" alt="logo_facebook" title="Le logo de facebook"/>
  23. </a>
  24. </figure>
  25. <figure id="insta">
  26. <a rel="noreferrer" target="_blank" href="{{options.instagram.lien_instagram}}">
  27. <img src="{{theme.link}}/dist//assets/images/inst.svg" alt="logo_instagram" title="Le logo d'instagram"/>
  28. </a>
  29. </figure>
  30. </div>
  31. <div class="burger col">
  32. <div class="fond_burger">
  33. <button class="hamburger hamburger--slider" type="button">
  34. <span class="hamburger-box">
  35. <span class="hamburger-inner"></span>
  36. </span>
  37. </button>
  38. </div>
  39. </div>
  40. <nav class="col" role="navigation">
  41. {% include "components/menu.twig" with {'items': menu.get_items} %}
  42. </nav>
  43. </section>
  44. {% endblock %}
  45. </header>
  46. {% if post.slug == "accueil" %}
  47. {% include "components/hero.twig" %}
  48. {% endif %}
  49. {% if post.slug == "privacy-policy" %}
  50. <figure class="paralax" data-rellax-speed="5">
  51. <img src="{{theme.link}}/asset/images/objet_8.svg" alt="objet 8">
  52. </figure>
  53. {% endif %}
  54. <main id="content" class="containe-fluid" role="main">
  55. {% if title %}
  56. <h1>{{title}}</h1>
  57. {% endif %}
  58. {# <div class="wrapper {{sidebar_class}}"> #}
  59. {% block content %}{% endblock %}
  60. {# </div> #}
  61. {% if sidebar %}
  62. <aside class="layout-sidebar">
  63. {{sidebar}}
  64. </aside>
  65. {% endif %}
  66. </main>
  67. {% block footer %}
  68. <footer>
  69. {% include 'components/footer.twig' %}
  70. </footer>
  71. {{ function('wp_footer') }}
  72. {% endblock %}
  73. </body>
  74. </html>