Returns true if the page is hidden from the navigation (can be changed in the page's settings).

Usage

{% if page.is_hidden? %}
  This page is hidden.
{% endif %}

Example

{% if page.is_hidden? %}
  <p>This page is hidden.</p>
{% endif %}