Gonk Design: Pattern Library

View the website ←

Closer

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

Source (Nunjucks)

<div class="closer">
  <div class="wrapper flow">
    {% include "icons/brand-exploded.svg" %}
    {% if data.navItems.length %}
      <nav aria-label="{{ data.navLabel }}" class="nav">
        <ul class="cluster" role="list">
          {% for item in data.navItems %}
            <li>
              <a href="{{ item.href }}" {% if item.current %}aria-current="page"{% endif %}>{{ item.label }}</a>
            </li>
          {% endfor %}
        </ul>
      </nav>
    {% endif %}
  </div>
</div>

Gonk Design: Pattern Library

View the website ←