46 lines
1.1 KiB
Twig
46 lines
1.1 KiB
Twig
{% block html_head_container %}
|
|
{% include 'html-header.twig' %}
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
{% endblock %}
|
|
|
|
<body class="container-fluid {{post.slug}} {{post.post_type}}">
|
|
<header class="fixed-top d-flex">
|
|
{% block header %}
|
|
{% include "components/header.twig" %}
|
|
{% endblock %}
|
|
</header>
|
|
|
|
{% if post.slug == "accueil" %}
|
|
{% include "components/hero.twig" %}
|
|
{% endif %}
|
|
|
|
{% if post.slug == "privacy-policy" %}
|
|
<figure class="paralax" data-rellax-speed="5">
|
|
<img src="{{theme.link}}/asset/images/objet_8.svg" alt="objet 8">
|
|
</figure>
|
|
{% endif %}
|
|
|
|
<main id="content" class="container px-0" role="main">
|
|
{% if title %}
|
|
<h1>{{title}}</h1>
|
|
{% endif %}
|
|
{# <div class="wrapper {{sidebar_class}}"> #}
|
|
{% block content %}{% endblock %}
|
|
{# </div> #}
|
|
{% if sidebar %}
|
|
<aside class="layout-sidebar">
|
|
{{sidebar}}
|
|
</aside>
|
|
{% endif %}
|
|
</main>
|
|
|
|
{% block footer %}
|
|
<footer class="row">
|
|
{% include 'components/footer.twig' %}
|
|
</footer>
|
|
{{ function('wp_footer') }}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|