<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://cdn1.easyamap.fr/images/logo-easy-amap-icon.png" />
<title>Easyamap - Le logiciel de gestion de commandes pour les AMAP</title>
<link href="https://cdn1.easyamap.fr/bootstrap/css/bootstrap-yeti.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Boogaloo" rel="stylesheet">
<link rel="stylesheet" href="https://cdn1.easyamap.fr/owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdn1.easyamap.fr/owlcarousel/owl.theme.default.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<style type="text/css">
#carousel-container {
border:10px solid #EEE;
}
/* .owl-stage-outer {
border-bottom:10px solid #EEE;
}*/
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #008cba;
}
blockquote {
margin-bottom:2px;
}
</style>
<link href="https://cdn1.easyamap.fr/css/portal.css" rel="stylesheet" />
<meta property="og:title" content="Easyamap - Le logiciel de gestion de commandes pour les AMAP"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.easyamap.fr"/>
<meta property="og:image" content="https://cdn1.easyamap.fr/images/easyamap-bandeau.png"/>
<meta property="og:site_name" content="easyamap"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
</head>
<body id="portal">
<div class="container">
{% block body %}{% endblock %}
</div>
{% include 'home/_footer.html.twig' %}
</body>
</html>
<script type="text/javascript" src="https://cdn1.easyamap.fr/js/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="https://cdn1.easyamap.fr/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdn1.easyamap.fr/owlcarousel/owl.carousel.min.js"></script>
<script>
var owl;
$(document).ready(function() {
owl = $('.owl-carousel');
owl.on('changed.owl.carousel', function(event) {
/* if ($("#carousel-comment").length==0) {
$(".owl-nav").prepend('<div id="carousel-comment" class="text-center"></div>');
}*/
var index = event.item.index;
if (index != null) {
var title = owl.find('img')[index].title;
$("#carousel-comment").html(title);
$("#carousel-comment").hide().fadeIn();
}
});
$('#play').on('click',function(){
owl.trigger('play.owl.autoplay')
})
$('#stop').on('click',function(){
owl.trigger('stop.owl.autoplay')
})
$('#next').click(function() {
owl.trigger('next.owl.carousel');
})
// Go to the previous item
$('#prev').click(function() {
// With optional speed parameter
// Parameters has to be in square bracket '[]'
owl.trigger('prev.owl.carousel');
})
owl.owlCarousel({
items : 1,
loop: true,
nav: false,
// navText: ['<span class="glyphicon glyphicon-backward"></span> Précédent ',' Suivant <span class="glyphicon glyphicon-forward"></span>'],
lazyLoad: true,
singleItem: true,
autoplay:true
});
});
</script>