Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
breakoutModewide
languagehtml
<div class='"row featured-items-content'">
    {{#each items}}
        {{#if (or (eq @root.zone '"Top'") (eq @root.zone '"Top2'") (eq @root.zone '"Bottom'") (eq @root.zone '"Bottom2'"))}}
            {{#if (eq type '"content'")}}
                <div class='"column column--12'">
                    <hawksearch-featured-items-content-item></hawksearch-featured-items-content-item>
                </div>
            {{else}}
                <div class='"column column--12 column-sm--6 column-lg--4'">
                    <hawksearch-featured-items-content-item></hawksearch-featured-items-content-item>
                </div>
            {{/if}}
        {{else}}
            <hawksearch-featured-items-content-item></hawksearch-featured-items-content-item>
        {{/if}}
    {{/each}}
</div>