about summary refs log tree commit diff stats
path: root/themes/bear/templates/nav.html
blob: cf0d9b7b3adf7f632e6862eefc436c4f13a99536 (plain)
1
2
3
4
5
6
7
8
9
10
<a href="{{ config.base_url | safe }}">Home</a>
{%- if config.extra.main_menu %}
  {%- for item in config.extra.main_menu %}
    {%- if item.url is matching("https?://") %}
      <a href="{{ item.url | safe }}">{{ item.name }}</a>
    {%- else %}
      <a href="{{ get_url(path=item.url) }}">{{ item.name }}</a>
    {%- endif %}
  {%- endfor %}
{%- endif -%}