# 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 that is link is part of the current URL.
### child_active
Returns true if this links child is currently active.
### current
Returns true if this link matches to the current page and is the link for the current page.
### child_current
Returns true if this links child is current.
### levels
Returns the total amount levels below this link.
### links
Returns the child links for this link.
### object
Access the object related to this link. Possible objects are:
- [product](/reference/liquid/objects/store/product/)
- [product group](/reference/liquid/objects/store/product_group/)
- [page](/reference/liquid/objects/store/page/)
- [article](/reference/liquid/objects/store/article/)
### title
Returns the title.
### type
Returns the type.
### url
Returns the url.
### target
Returns the target.