# page.jinja

**Route:** `/pages/{slug}`
**Path Operation:** `pages`

## Variables

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

## Page Properties

| Property | Description |
|----------|-------------|
| `page.title` | Page title |
| `page.content` | Page content (HTML) |

## Example

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

{% block main_content %}
  <div class="page">
    <h1>{{ page.title }}</h1>
    <div class="content">
      {{ page.content | safe }}
    </div>
  </div>
{% endblock %}
```

