<?php $__env->startSection('title'); ?>
	<?php echo $page_recrutement->getAttr('title'); ?>

<?php $__env->stopSection(); ?>
<?php $__env->startSection('description'); ?>
	<?php echo $page_recrutement->getAttr('description'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<div class="pageJobs">
	<div class="bandeauJobs">
		<div class="backgroundBandeauJobs">
			<h1><?php echo $page_recrutement->getAttr('title'); ?></h1>
			<p><?php echo $page_recrutement->getAttr('description'); ?></p>
		</div>
	</div>	
	<div class="wrapper">
	<?php if(count($jobs)): ?>
		<?php foreach($jobs as $j): ?>
		<?php echo $j->listing(); ?>

		<?php endforeach; ?>
	<?php else: ?>
		<p class="text-center"><?php echo trans('site.aucune_offre'); ?></p>
	<?php endif; ?>
	</div>
</div>
<script>
	$(document).ready(function(){
		$('.job').click(function(){
			window.location.href = $(this).find('a').attr('href');
		})
	});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>