<?php $__env->startSection('IncStyles'); ?>
	<?php $section->getEvaluatedSpecial('IncStyles'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('Header'); ?>
	<?php $section->getEvaluatedSpecial('Header'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('Content'); ?>
	<?php foreach($contents as $content): ?>
		<?php eval("?>".$content); ?>
	<?php endforeach; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('Footer'); ?>
	<?php $section->getEvaluatedSpecial('Footer'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('Scripts'); ?>
	<?php foreach($scripts as $script): ?>
		<?php $script; ?>
	<?php endforeach; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('Style'); ?>
	<?php foreach($styles as $style): ?>
		<?php eval("?>".$style); ?>
	<?php endforeach; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('IncScripts-Bottom'); ?>
	<?php $section->getEvaluatedSpecial('IncScripts-Bottom'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('IncScripts-Top'); ?>
	<?php $section->getEvaluatedSpecial('IncScripts-Top'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('GA'); ?>
	<script async src="https://www.googletagmanager.com/gtag/js?id=UA-11233558-1"></script>
	<script>
		window.dataLayer = window.dataLayer || [];
		function gtag(){dataLayer.push(arguments);}
		gtag('js', new Date());

		gtag('config', 'UA-11233558-1');
	</script>
<?php $__env->stopSection(); ?>

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