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">&#xf0c9;</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

Version Path
jekyll-theme-shikhalev-0.1.0.8 _includes/nova/aside/navy.liquid
jekyll-theme-shikhalev-0.1.0.6 _includes/nova/aside/navy.liquid
jekyll-theme-shikhalev-0.1.0.5 _includes/nova/aside/navy.liquid