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

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

<?php $__env->startSection('NavWhite'); ?>
	<?php echo $section->getEvaluatedSpecial('NavWhite'); ?>
<?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 eval("?>".$section->where('name', '=', 'Footer')->firstOrFail()->content); ?>
<?php $__env->stopSection(); ?>

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

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

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

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

<?php $__env->startSection('ga'); ?>
<!-- Global site tag (gtag.js) - Google Analytics -->
<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(); ?>