{# From https://www.11ty.dev/docs/plugins/navigation/ #} {% set navPages = collections.all | eleventyNavigation %} {% macro renderNavListItem(entry) -%}
  • {% if not entry.children.length %} {{ entry.title }} {% if entry.status == "Abgeschlossen" %} Abgeschlossen {% elseif entry.status == "Laufend" %} in Vorbereitung {% endif %} {% else %}
    {{ entry.title }}
    {% endif %} {%- if entry.children.length -%} {%- endif -%}
  • {%- endmacro %}