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

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

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

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

<div id="content-interne">
	<div class="left chemin">
		<div class="wrapper">
			<h1><?php echo $page->getAttr('name'); ?></h1>
			<h2>
				<a href="<?php echo URL::to('/'); ?>" title="<?php echo trans('site.home_pv'); ?>"><?php echo trans('site.home'); ?></a>
				<i class="fa fa-chevron-right"></i> <a class="actif" href="<?php echo URL::route('page', [$page->getAttr('url')]); ?>" title="<?php echo $page->getAttr('name'); ?>"><?php echo $page->getAttr('name'); ?></a>
			</h2>
		</div>
	</div>
	<div class="clear"></div>	
	<div class="wrapper">
		<div class="content-editor"><?php echo $page->getAttr('text'); ?></div>
	</div>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>