title: is_visible --- summary: Indicates if the object is visible or not. --- type: property --- body: This is exactly the opposite of [is_hidden :ref](../is-hidden/). ## Example ```html+jinja {% set downloads = site.get('/downloads') %} {% if downloads.is_visible %}

go to downloads {% endif %} ```