Gonk Design: Pattern Library

View the website ←

Hero

{{ design.patterns.renderPattern('hero', {}) | safe }}

Source (Nunjucks)

<div class="hero">
  <picture>
    <source srcset="{{ data.img.src }}.webp" type="image/webp">
    <img src="{{ data.img.src }}.jpg" alt="{{ data.img.alt }}"  draggable="false"/>
  </picture>
  {# <img src="{{ data.img.src }}" alt="{{ data.img.alt }}" draggable="false"/> #}
  <a href="{{ data.href }}" class="hero__skip-link flow">
    <span class="hero__skip-link-icon">{% include "icons/arrow-down.svg" %}</span>
    <h2><span class="hero__skip-link-label">{{ data.label }}</span></h2>
  </a>
</div>

Gonk Design: Pattern Library

View the website ←