File: mobile-nav-items.html

package info (click to toggle)
jekyll 4.4.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,488 kB
  • sloc: ruby: 16,736; javascript: 1,455; sh: 216; xml: 29; makefile: 9
file content (14 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<ul>
  {% for p in site.data.primary_nav -%}
    {% if p.show_on_mobile -%}
    <li
      {%- if p.link == '/' -%}
        {%- if page.url == '/' %} class="current" aria-current="page" {% endif -%}
      {% else -%}
        {%- if page.url contains p.link %} class="current" aria-current="page" {% endif -%}
      {% endif -%}
    ><a href="{{ p.link | relative_url }}">{{ p.title }}</a></li>
    {% endif -%}
  {% endfor -%}
  <li><a href="{{ site.repository }}" target="_blank" rel="noopener">GitHub</a></li>
</ul>