> ## 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.

# Overview

> Understand the available liquid tags

Tags are used to add dynamic content to your theme. They allow you to insert variables, conditionals, and other elements into your templates.

## Usage

Tags are wrapped with curly brace percentage delimiters `{% %}`. The text within the delimiters doesn't produce visible output when rendered.

In the example below, we check if certificates are enabled for a course. If `certificate_enabled` returns true, then we show a message indicating certificates are available. Otherwise, we show that certificates are not available.

<Columns cols={2}>
  <CodeGroup>
    ```liquid Code theme={null}
    {% if all_courses["my-course"].certificate_enabled %}
      Certificates are available for this course!
    {% else %}
      Certificates are not available for this course.
    {% endif %}
    ```

    ```json Data theme={null}
    // Just an example initial data, the data is not real
    {
      "all_courses": {
        "my-course": {
          "certificate_enabled": true
        }
      }
    }
    ```
  </CodeGroup>

  <CodeGroup>
    ```liquid Output theme={null}
    Certificates are available for this course!
    ```
  </CodeGroup>
</Columns>

Check detailed documentation for each tag in the following sections:

<CardGroup cols={3}>
  <Card title="Conditional" icon="code-branch" href="/en/members-area/reference/tags/conditional">
    Tags for logical flow control and conditions
  </Card>

  <Card title="HTML" icon="code" href="/en/members-area/reference/tags/html">
    Tags for working with HTML content
  </Card>

  <Card title="Iteration" icon="repeat" href="/en/members-area/reference/tags/iteration">
    Tags for looping and collection handling
  </Card>

  <Card title="Syntax" icon="terminal" href="/en/members-area/reference/tags/syntax">
    Tags for language syntax constructs
  </Card>

  <Card title="Theme" icon="palette" href="/en/members-area/reference/tags/theme">
    Tags for theme customization
  </Card>

  <Card title="Variable" icon="cube" href="/en/members-area/reference/tags/variable">
    Tags for working with variables
  </Card>
</CardGroup>

For complete documentation, refer to the [LiquidJS documentation](https://liquidjs.com/tags/overview.html).
