<?php if($article): ?>
  <div class="block-wrapper title-quote">
    <div class="block-container">
      <div class="text-content">
        <h2><?php echo $article->title; ?></h2>
        <h3><?php echo $article->subtitle; ?></h3>
        <div class="quote-element">
          <div class="icon icon-quotation-marks"></div>
          <div class="text-wrapper">
            <?php echo $article->content; ?>

          </div>
        </div>
      </div>
      <div class="image-element"
      style="background-image: url('<?php echo getMediaUrl($article->image->filename, '700'); ?>')"></div>
    </div>
  </div>
<?php endif; ?>
