all repos — zola-bearblog @ a423677c42b7a3f755ee5c2ba434ed77ef6f6b99

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 -%}