<?php if($article): ?>
<div class="block-wrapper title-text-description" data-article-id="<?php echo $article->id; ?>"  data-anchor="#artigo<?php echo e($article->id); ?>">
  <a id="artigo<?php echo e($article->id); ?>"></a>
  <div class="block-container">
    <h2><?php echo $article->title; ?></h2>
    <h3><?php echo $article->subtitle; ?></h3>
    <?php echo $__env->make('frontend.partials.reusables.social', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    <div class="text-wrapper small-height">
      <div class="paragraphs-wrapper">
        <div class="paragraphs">
          <?php echo $article->content; ?>

        </div>
      </div>
      <a class="js-toggle-text" href="#">Ler mais</a>
    </div>
  </div>
</div>
<?php endif; ?>
