all repos — website @ fe119b75f2b3f8f3ba8c2367c3ec768538edc695

My website

themes/bear/templates/nav.html (view raw)

1
2
3
4
5
6
7
8
9
10
<a href="{{ config.base_url }}">Home</a>
{%- if config.extra.main_menu %}
  {%- for item in config.extra.main_menu %}
    {%- if item.url is matching("https?://") %}
      <a href="{{ item.url }}">{{ item.name }}</a>
    {%- else %}
      <a href="{{ get_url(path=item.url )}}">{{ item.name }}</a>
    {%- endif %}
  {%- endfor %}
{%- endif -%}