# home.jinja

**Route:** `/`
**Path Operation:** `home`

## Variables

| Variable | Type |
|----------|------|
| `store` | Store |
| `session` | Session |

## Example

```jinja
{% extends "layout.jinja" %}

{% block main_content %}
  <div class="home">
    {% template_components %}
  </div>
{% endblock %}
```

## Notes

- `{% template_components %}` renders sections from Theme Editor
- Configure sections via `home.json` schema

