{% macro warning(current=true, section) %} {% if section and section.extra.public_draft %} {% set public_draft = section.extra.public_draft %} {% set issue = public_draft / 1 %} {% if current %}

Draft Page

The page is still under development (Tracking Issue: {{ issue }}). This page and all pages under it will be hidden from search engines and menus!
{% else %}

This page is hidden because an ancestor is hidden

{% endif %} {% elif section.components %} {% set next_path = section.components | slice(end=-1) | concat(with="_index.md") | join(sep="/") %} {{ public_draft::warning(current=false, section=get_section(path=next_path) ) }} {% endif %} {% endmacro warning %}