File: //home/artinside/public_html/lhh/themes/en/food.php
<?php $v->layout("_theme");
$v->insert("views/page-title", ["pageTitle" => $pageTitle, "breadcrumb" => $breadcrumb]);
?>
<section id="content">
<div class="content-wrap">
<div class="container">
<div class="row justify-content-between align-items-center col-mb-30 mt-4 mb-5">
<div class="col-md-6 ">
<img src="<?= url("shared/img/prato1.jpg") ?>" alt="Great Food"
title="atelier arcau"> </div>
<div class="col-md-6">
<div class="heading-block">
<h3>HEALTHY & AFFORDABLE GASTRONOMIE</h3>
<p>Chef Baptiste Denieul - Michelin Star Chef
</p>
</div>
<p class="mb-4 font-weight-normal mt-0 font-medium2">Today, Light Human Hotels is entrusting her kitchen to Baptiste Denieul, one of the most talented Michelin Star chefs of his generation. LHH success is secured by a mix of genres and our relaxed outlook does not prevent us from striving for rigour and excellence. This Michelin starred chef has joined us on our adventure, putting his signature to a new menu: spontaneous, generous and always available.
bon appétit!</p>
</div>
</div>
<div class="row justify-content-between align-items-center col-mb-30 mt-4 mb-5">
<div class="col-md-6">
<div class="heading-block">
<h3>LE MENU</h3>
<p>Chef Baptiste Denieul - Michelin Star Chef
</p>
</div>
<p class="mb-4 font-weight-normal mt-0 font-medium2">I cook with love and passion products that nature offers me in order to respect the seasons. At the restaurant, you will have the opportunity to discover inspiring menus that change every two months. (Chef Baptiste Denieul)
</p>
<p class="font-italic">everything to delight you without leaving the Hotel</p>
</div>
<div class="col-md-6 ">
<img src="<?= url("shared/img/great-food.jpg") ?>" alt="Great Food"
title="atelier arcau">
</div>
</div>
</div>
<div class="masonry-thumbs grid-container grid-5" data-big="" data-lightbox="gallery">
<?php for ($i = 1; $i <= 5; $i++): ?>
<a class="grid-item" href="<?= url("storage/images/chef/c{$i}.jpg") ?>"
data-lightbox="gallery-item"><img src="<?= image("images/chef/c{$i}.jpg", 500, 400) ?>"
alt="Great Food - Chef Baptiste Denieul - <?= $i ?>" title="Great Food - Chef Baptiste Denieul - <?= $i ?>"></a>
<?php endfor; ?>
</div>
<div class="section parallax notopborder dark m-0"
style="background: url('<?= url("shared/img/chefbg.jpg") ?>'); padding: 100px 0; background-position: center top; background-size: cover; background-repeat: no-repeat;">
<!-- <div class="overlay overlay-black opacity-light"></div>-->
<div class="container">
<div class="row justify-content-between align-items-center col-mb-30 p-5">
<div class="col-lg-7">
<img src="<?= url("shared/img/chef.png") ?>" alt="Chef Baptiste Denieul - Michelin Star Chef" class="mb-5">
</div>
<div class="col-lg-5">
<img src="<?= url("shared/img/chef-logo.svg") ?>" alt="Logo Chef Baptiste Denieul - Michelin Star Chef" class="mb-5" width="220">
<div class="heading-block mt-5" >
<h3 class="" style="font-size: 35px;">THE YOUNGEST MICHELIN STARRED CHEF</h3>
</div>
<p class="text-larger font-weight-normal">The guide knows the young chef Baptiste Denieul - 25 years - awarding him for the Auberge Tiegezh in Morbihan-which he runs brilliantly. Tiegezh means family Breton: and that says it all!</p>
<p class="text-larger font-weight-normal">Cuisine as generous as his smile, guided by his roots, he is surprisingly brilliant and creative. A perfect combination with the values of <b>Light Human Hotel</b>.</p>
</div>
</div>
</div>
</div>
<?php $v->insert("views/map"); ?>
<?php $v->insert("views/newsletter-widget"); ?>
</section><!-- #content end -->
<?php $v->start("scripts"); ?>
<script src="<?= url("/shared/scripts/hover3d.js"); ?>"></script>
<script>
jQuery(document).ready( function(){
if( !jQuery('body').hasClass('device-touch') ) {
var lFollowX = 0,
lFollowY = 0,
x = 0,
y = 0,
friction = 1 / 30;
function moveBackground() {
x += (lFollowX - x) * friction;
y += (lFollowY - y) * friction;
translate = 'translate(' + x + 'px, ' + y + 'px) scale(1.1)';
jQuery('.move-bg').css({
'-webit-transform': translate,
'-moz-transform': translate,
'transform': translate
});
window.requestAnimationFrame(moveBackground);
}
jQuery(window).on('mousemove click', function(e) {
var lMouseX = Math.max(-100, Math.min(100, jQuery(window).width() / 2 - e.clientX));
var lMouseY = Math.max(-100, Math.min(100, jQuery(window).height() / 2 - e.clientY));
lFollowX = (10 * lMouseX) / 100; // 100 : 12 = lMouxeX : lFollow
lFollowY = (10 * lMouseY) / 100;
});
moveBackground();
jQuery(".book-wrap").hover3d({
selector: ".book-card",
shine: false,
});
}
});
</script>
<?php $v->end(); ?>