Logo {% if site.hiring == true %} We're hiring! {% endif %}
{% for link in site.data.menus.main %} {% assign active = nil %} {% if page.url contains link.url %} {% assign active = 'active' %} {% endif %} {% if link.items %}
{{ link.title }}
{% for item in link.items %} {% assign active = nil %} {% if page.url contains item.url %} {% assign active = 'active' %} {% endif %} {{ item.title }} {% endfor %}
{% else %} {{ link.title }} {% endif %} {% endfor %}