all repos — zola-bearblog @ 555ff8a5656cf9fc160de3ec19bc827f6e5da9b7

Port of bear blog theme to zola

templates/nav.html (view raw)

1
2
3
4
5
6
7
8
9
{%- 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, lang=lang )}}">{{ item.name }}</a>
    {%- endif %}
  {%- endfor %}
{%- endif -%}