<?php if($article): ?>
  <div class="block-wrapper title-text-video" 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">
      <div class="header">
        <?php if($article->title): ?>
           <h3><?php echo $article->title; ?></h3>
        <?php endif; ?>
        <?php if($article->subtitle): ?>
          <h4><?php echo $article->subtitle; ?></h4>
        <?php endif; ?>
        <?php echo $__env->make('frontend.partials.reusables.social', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
      </div>
      <dib class="reverse-direction">
        <div class="content">
           <div class="player-wrapper">
              <?php if(isset($article->link) && !empty($article->link) && $article->link != ""): ?>
                <div class="player js-global-video" data-video-src="<?php echo $article->link; ?>">
                  <?php if($article->image): ?>
                    <div class="js-placeholder-image placeholder-image" style="background-image: url(<?php echo getMediaUrl($article->image->filename, '700'); ?>)"></div>
                  <?php endif; ?>
                  <div class="js-global-video-control-icon js-global-video-toggle play-button pause"></div>
                </div>
                <div class="titles">
                <?php if($article->link_title): ?>
                  <h4><?php echo $article->link_title; ?></h4>
                <?php endif; ?>
                <?php if($article->link_subtitle): ?>
                  <h5><?php echo $article->link_subtitle; ?></h5>
                <?php endif; ?>
              </div>
            <?php endif; ?>
          </div>
          <div class="text-wrapper">
            <div class="paragraphs-wrapper">
              <div class="paragraphs">
                <?php if($article->content): ?>
                  <?php echo $article->content; ?>

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