--- layout: default title: part nav: group: Liquid Variables --- # part Each part returned by the paginate.parts array represents a link in the pagination's navigation. {% block "note-information" %} The part object is only accessible through the paginate object, and can only be used within paginate tags. {% endblock %} The example below shows how the part object's attributes can be accessed through a for loop that goes through the paginate.parts array.

Input

{% highlight html %}{% raw %} {% for part in paginate.parts %} {% if part.is_link %} {{ part.title | link_to: part.url}} {% endif %} {% endfor %} {% endraw %}{% endhighlight %}

Output

{% highlight html %}{% raw %} 1 2 3 {% endraw %}{% endhighlight %}
The part object has the following attributes: {% table_of_contents %} {% anchor_link "part.is_link", "part-is_link" %} Returns true if the part is a link, returns false if it is not. {% anchor_link "part.title", "part-title" %} Returns the title of the part. {% anchor_link "part.url", "part-url" %} Returns the URL of the part.