> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Theme tags

> Theme tags help you structure and organize your templates.

Theme tags provide tools for building modular and reusable templates.

## `include`

Renders a template partial (snippet) inside the current template.

```liquid theme={null}
{% include 'snippet_name' %}
```

<ParamField path="snippet_name" type="string">
  The name of the snippet to include.
</ParamField>

<Columns cols={2}>
  <CodeGroup>
    ```liquid Code theme={null}
    <div class="products">
      {% include 'product-card' %}
    </div>
    ```

    ```liquid product-card.liquid theme={null}
    <div class="product-card">
      <h3>Product Title</h3>
      <p>$19.99</p>
    </div>
    ```
  </CodeGroup>

  <CodeGroup>
    ```liquid Output theme={null}
    <div class="products">
      <div class="product-card">
        <h3>Product Title</h3>
        <p>$19.99</p>
      </div>
    </div>
    ```
  </CodeGroup>
</Columns>
