<?php $__env->startSection('main'); ?>
<div class="widewrapper pagetitle" style="padding-bottom:10px;padding-top:0">
    <div class="container">
        <h1>TEAM BLOG.</h1>
    </div>
</div>
<?php foreach ($blogs as $blog): ?>
<div class="container">
    <div class="row">
        <div class="col-lg-12 col-md-12 col-sm-12" id="<?=$blog['id'] ?>">
            <h2 class="title"><?= $blog['title'] ?></h2>
            <img class="leadimage img-responsive" src="<?= $blog['image'] ?>" alt="Blog Picture" style="max-height:400px;">

            <?php echo File::get(public_path() . "/" . $blog['html'] ); ?>
        </div>
    </div>
    <hr/>
</div>
<?php endforeach; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('subpages', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>