Plugin

This section will go over how to use the plugin that comes with the Partials module.

Accessing Partials

The partial function returns a partial to render or work with. Simply provide the slug of the partial to get:

{% set partial = partial('my-partial') %}
Rending Partials

You can use the partial function to easily render a partial too:

{{ partial('my-partial') }}