Sha256: 15e711679d6821431d1a2dde4d617114d55db0afae474754e4242f3df7afdc18
Contents?: true
Size: 895 Bytes
Versions: 3
Compression:
Stored size: 895 Bytes
Contents
{%- assign paths = site.header_pages -%} {%- if paths -%} <div class="wrapper"> <input type="checkbox" id="navy-check"> <label for="navy-check"> <span id="menu-icon" class="fas"></span> </label> <div id="navy-menu"> {%- for path in paths -%} {%- assign item = site.pages | where: "path", path | first -%} {%- if item and item.title -%} {%- else -%} {%- for col in site.collections -%} {%- assign found = col.docs | where: "path", path | first -%} {%- if found -%} {%- assign item = found -%} {%- endif -%} {%- endfor -%} {%- endif -%} {%- if item and item.title -%} <a class="navy-item fa-icon-{{- item.icon -}}" href="{{- item.url | relative_url -}}">{{- item.short | default: item.title | escape -}}</a> {%- endif -%} {%- endfor -%} </div> </div> {%- endif -%}
Version data entries
3 entries across 3 versions & 1 rubygems