{% partial %}
The {% partial %}
tag will parse a CMS partial and render the partial contents on the page. To display a partial called footer.htm, simply pass the name after the partial
tag quoted as a string.
A partial inside a subdirectory can be rendered in the same way.
NOTE: The Themes documentation has more details on subdirectory usage.
The partial name can also be a variable:
Variables
You can pass variables to partials by specifying them after the partial name:
You can also assign new variables for use in the partial:
Inside the partial, variables can be accessed like any other markup variable:
Checking a partial exists
In any template you can check if a partial content exists by using the partial()
function. This lets you to generate different markup depending on whether the partial exists or not. Example: