This element is available as a component. It is also part of the related content with important links pattern.
- Handle: @important-link
- Preview:
- Filesystem Path: src/components/03-page-elements-and-patterns/navigation-elements/important-link/important-link.hbs
- Referenced by (6): @grid-sample-content, @calendar, @calendar--sgf-alert, @calendar--wp, @calendar--wp-alert, @related-content--links
<div class="ContentBlock important-link">
<!-- Log the context received by the partial to see what it is receiving -->
<a href="#">
<div class="eyebrow">Lorem ipsum dolor</div>
<div class="headline">Lorem ipsum dolor sit amet consectetur</div>
</a>
</div>
<div class="ContentBlock important-link">
{{log this}} <!-- Log the context received by the partial to see what it is receiving -->
<a href="{{url}}">
{{#if eyebrow}}
<div class="eyebrow">{{eyebrow}}</div>
{{/if}}
<div class="headline">{{headline}}</div>
</a>
</div>
{
"eyebrow": "Lorem ipsum dolor",
"headline": "Lorem ipsum dolor sit amet consectetur",
"url": "#"
}