<article class="media-blurb">
    <div class="media-box">
        <div class="media-box-image">
            <img src="/images/Hulvat-2017-2.png" alt="" />
        </div>
        <div class="media-box-text gold">
            <div class="media-box-content blog--podcast">
                <h2><a href="#">What You Need to Know About the New Tax Law</a></h2>
                <p class="tags">Tags:
                    <a href="#">Taxes</a>
                    <a href="#">Leadership</a>
                </p>
            </div>
        </div><!-- end media-box-text -->
    </div><!-- end media-box -->
    <div class="blurb-content">
        <p class="author"><strong>Published by:</strong> John Smith, John Smith II, John Smith III, John Smith IV</p>
        <p class="date"><strong>Date Published:</strong> May 10, 2019</p>
        <p>And to discriminate only generates hate. And when you hate then you're bound to get irate. Madness is what you demonstrate. And that's exactly how hate works and operates. Man, we gotta set it straight. Take control of your mind and just meditate. And let your soul just gravitate. To the love, so the whole world celebrate it.</p>
    </div>
</article>
{% set a1 = author|remove_html_comments_as_string|trim %}
{% set a2 = author_2|remove_html_comments_as_string|trim %}
{% set a3 = author_3|remove_html_comments_as_string|trim %}
{% set a4 = author_4|remove_html_comments_as_string|trim %}
<article class="media-blurb">
  {% block cms_override %}
      {% include "@media_box" %}
  {% endblock cms_override %}
    <div class="blurb-content">
        {% if author|remove_html_comments_as_string|trim is not empty %}
          <p class="author"><strong>Published by:</strong> {{ a1|raw }}{% if author_2 %}, {{ a2|raw }}{% endif %}{% if author_3 %}, {{ a3|raw }}{% endif %}{% if author_4 %}, {{ a4|raw }}{% endif %}</p>
        {% endif %}
        {% if date|trim is not empty %}
            <p class="date"><strong>Date Published:</strong> {{ date }}</p>
        {% endif %}
        <p>{{ content }}</p>
    </div>
</article>
{
  "img_src": "/images/Hulvat-2017-2.png",
  "media_type": "podcast",
  "box_url": "#",
  "title": "What You Need to Know About the New Tax Law",
  "color": "gold",
  "tags": {
    "1": {
      "tag_name": "Taxes",
      "url": "#"
    },
    "2": {
      "tag_name": "Leadership",
      "url": "#"
    }
  },
  "author": "John Smith",
  "author_2": "John Smith II",
  "author_3": "John Smith III",
  "author_4": "John Smith IV",
  "date": "May 10, 2019",
  "content": "And to discriminate only generates hate. And when you hate then you're bound to get irate. Madness is what you demonstrate. And that's exactly how hate works and operates. Man, we gotta set it straight. Take control of your mind and just meditate. And let your soul just gravitate. To the love, so the whole world celebrate it."
}
  • Content:
    .media-section {
      background-color: $white;
    }
    
    .media-blurb {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0 0 $space-double 0;
    
      @media only screen and (min-width: $break-desktop) {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0 0 $space-double 0;
      }
    
      @media only screen and (max-width: $break-desktop) {
        flex-direction: row;
      }
    
      @media only screen and (max-width: $break-tablet) {
        flex-direction: column;
      }
    
      &:first-of-type {
        @media only screen and (min-width: $break-tablet) {
          padding: 0 0 $space-double 0;
        }
      }
    
      .blurb-content {
        margin: $space 0;
    
        @media only screen and (min-width: $break-desktop) {
          margin: $space-double 0 0 $space-double;
        }
    
        @media only screen and (max-width: $break-desktop) {
          margin: $space-double 0 0 $space-double;
        }
      }
    }
    
    
  • URL: /components/raw/media_preview/media_preview.scss
  • Filesystem Path: components/03-sections/14-media_preview/media_preview.scss
  • Size: 873 Bytes

No notes defined.