<div style="padding: var(--size-4);">
    <h1 class="mexican-pink">
        Blockquote
        <span class="token string" style="font-size: var(--font-size-2)">selective-yellow</span>
    </h1>
    <hr>
    <h2 class="celestial-blue">Standard</h2>

    <blockquote class="selective-yellow">
        <p>I speak to everyone in the same way, whether he is the garbage man or the president of the university.</p>
        <cite>Albert Einstein</cite>
    </blockquote>

    <h2 class="celestial-blue">Full Width</h2>

    <blockquote class="selective-yellow full-width">
        <p>I speak to everyone in the same way, whether he is the garbage man or the president of the university.</p>
        <cite>Albert Einstein</cite>
    </blockquote>

    <h2 class="celestial-blue">Background Pattern</h2>

    <blockquote class="selective-yellow background-pattern">
        <p>I speak to everyone in the same way, whether he is the garbage man or the president of the university.</p>
        <cite>Albert Einstein</cite>
    </blockquote>

    <h2 class="celestial-blue">Full Width and Background Pattern</h2>

    <blockquote class="selective-yellow full-width background-pattern">
        <p>I speak to everyone in the same way, whether he is the garbage man or the president of the university.</p>
        <cite>Albert Einstein</cite>
    </blockquote>

</div>
<div style="padding: var(--size-4);">
  <h1 class="mexican-pink">
    Blockquote
    {{#if modifier}}<span class="token string" style="font-size: var(--font-size-2)">{{modifier}}</span>{{/if}}
  </h1>
  <hr>
  <h2 class="celestial-blue">Standard</h2>

  <blockquote {{#if modifier}}class="{{modifier}}"{{/if}}>
    <p>{{text}}</p>
    <cite>{{citation}}</cite>
  </blockquote>

  <h2 class="celestial-blue">Full Width</h2>

  <blockquote class="{{#if modifier}}{{modifier}}{{/if}} full-width">
    <p>{{text}}</p>
    <cite>{{citation}}</cite>
  </blockquote>

  <h2 class="celestial-blue">Background Pattern</h2>

  <blockquote class="{{#if modifier}}{{modifier}}{{/if}} background-pattern">
    <p>{{text}}</p>
    <cite>{{citation}}</cite>
  </blockquote>

  <h2 class="celestial-blue">Full Width and Background Pattern</h2>

  <blockquote class="{{#if modifier}}{{modifier}}{{/if}} full-width background-pattern">
    <p>{{text}}</p>
    <cite>{{citation}}</cite>
  </blockquote>

</div>
{
  "text": "I speak to everyone in the same way, whether he is the garbage man or the president of the university.",
  "citation": "Albert Einstein",
  "modifier": "selective-yellow"
}
  • Handle: @blockquote--selective-yellow
  • Preview:
  • Filesystem Path: components/01-atoms/blockquote/blockquote.hbs

No notes defined.