Sha256: 7907cdb8c1868a3dcba97e5862704e6cec8cf4277a0f456bc952f1db9cb33364

Contents?: true

Size: 592 Bytes

Versions: 2

Compression:

Stored size: 592 Bytes

Contents

{% assign sorted-menus = site.data.menus | sort %}
{% for menu-types in sorted-menus %}
  {% for menu in menu-types[1] %}
    {% if menu-types[0] == 'common' or menu-types[0] == 'customers' and site.original == false %}
      {% for collection-type in site.defaults %}
        {% if collection-type.scope.type == menu.collection %}
          {% if collection-type.values.published == true -%}
            {% include {{ include.component | prepend: 'components/' | append: '.html' }} %}
          {% endif -%}
        {% endif %}
      {% endfor %}
    {% endif %}
  {% endfor %}
{% endfor %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-marketing-1.0.1 _includes/components/navbars/common.liquid
jekyll-theme-marketing-1.0.0 _includes/components/navbars/common.liquid