

<?php $__env->startSection('title'); ?>
	Blog
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="container news-container">
  <h1 class="title">Blog</h1>
  <?php foreach($news as $new): ?>
    <div class="row new">
      <div class="row">
          <div class="col-md-4">
              <img class="img-responsive" src="<?php echo asset($new->intro_image); ?>">
          </div>
          <div class="col-md-8">
              <h3 class="title"><?php echo $new->title; ?></h3>
              <p class="date"><?php echo $new->humanDate; ?></p>
              <p class="sumary"><?php echo $new->intro_text; ?></p>
              <a href="<?php echo route('new', [$new->id, $new->hash]); ?>" class="leer_mas btn btn-xs btn-default">Leer Más <i class="fa fa-angle-double-right"></i></a>
          </div>
      </div>
    </div>
  <?php endforeach; ?>
  <?php echo $news->links(); ?>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('principal::master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>