# Link
The `link` object describes a navigation link, including its URL, title, type, and related objects.
## Usage Example
```liquid
{%- comment -%} Render a navigation menu {%- endcomment -%}
{% for link in linklist.links %}
-
{{ link.title }}
{% if link.links.size > 0 %}
{% endif %}
{% endfor %}
```
## Properties
### active
Returns true if this link is currently active (part of the current URL).
### child_active
Returns true if this link's child is currently active.
### child_current
Returns true if this link's child is current.
### current
Returns true if this link matches the current page and is the link for the current page.
### levels
Returns the total number of levels below this link.
### links
Returns the child links for this link.
### object
Accesses the object related to this link. Possible objects are:
- [product](/reference/liquid/objects/store/product/)
- [category](/reference/liquid/objects/store/category/)
- [page](/reference/liquid/objects/store/page/)
- [article](/reference/liquid/objects/store/article/)
### target
Returns the target attribute for the link.
### title
Returns the title of the link.
### type
Returns the type of the link.
### url
Returns the URL of the link.