{#
/*
* Ce fichier est la propriété de l'association (c) Projets Métiers
*
* (c) crée par Jean-Marc CATALA <jeanmmarccatala@gmail.com>
*
*/
#}
{% extends 'basepm.html.twig' %}
{% block title %}Elèves - Projets Métiers{% endblock %}
{% block body %}
</div>
<div class="full">
<div class="container-sm">
<h1 class="centrer fontOdibee mt60">Un parcours adapté à chaque âge</h1>
</div>
</div>
<div class="row centrer container-sm">
<div class="col margColeleve">
<div>
<a href="{{ path('app_register',{type:'college'}) }}">
<img src="{{ asset('images/Illustration/college.svg') }}" alt="COLLÉGIENS" width="100%" height="100%" class="allume"></a>
</div>
<a href="{{ path('app_register',{type:'college'}) }}">
<h4 class="legendePofil college">COLLÉGIENS</h4>
<p>Tu es collégien et tu cherches une orientation dans la poursuite de tes études ou d'un apprentissage.</p></a>
</div>
<div class="col margColeleve">
<div>
<a href="{{ path('app_register',{type:'lycee'}) }}">
<img src="{{ asset('images/Illustration/lycee.svg') }}" alt="LYCEENS" width="100%" height="100%" class="allume"></a>
</div>
<a href="{{ path('app_register',{type:'lycee'}) }}">
<h4 class="legendePofil lycee">LYCEENS</h4>
<p>Vous êtes lycéen et vous cherchez une orientation dans la poursuite de vos études ou d'un métier.</p></a>
</div>
</div>
<div class="full eleves">
<img src="{{ asset('images/slider/eleves.svg') }}" alt="Projets métiers" width="80%" height="80%" class="centrer">
</div>
<div class="full aLaLigne"></div>
<br>
<br>
<br>
<style>
.allume{
opacity: 80%;
}
.allume:hover{
opacity: 100%;
}
</style>
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.js"></script>
<script>
$(document).ready(function(){
$('.customer-logos').slick({
slidesToShow: 6,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 1500,
arrows: false,
dots: false,
pauseOnHover: false,
responsive: [{
eakpoint: 768,
settings: {
slidesToShow: 4
}
}, {
eakpoint: 520,
settings: {
slidesToShow: 3
}
}]
});
});
</script>
{% endblock %}