# 404_not_found.jinja

**Path Operation:** `not_found`

Error page shown when content is not found.

## Variables

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

## Example

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

{% block main_content %}
  <div class="error-page">
    <h1>404</h1>
    <p>{{ _("Page not found") }}</p>
    <a href="{{ url_for('home') }}">{{ _("Go to Home") }}</a>
  </div>
{% endblock %}
```

