{# target: body #}
{# outlet: main #}
{#
Furatena root shell — composed from chirp-ui primitives, not app_shell_layout.
L1: minimal #main outlet + boost contract (Page.mounted → #page-root)
L3: page chrome lives in views (docs layout, site nav, hero) inside #page-root
#}
{% extends "layouts/fura_shell.html" %}
{% from "chirpui/shell_frame.html" import shell_runtime_script, shell_outlet_attrs %}
{% from "chirpui/toast.html" import toast_container %}
{% block lang %}{{ html_lang | default('en') }}{% end %}
{% block title %}{% if error_title is defined %}{{ error_title }}{% elif node is defined and node %}{{ node.title }}{% else %}{{ site_name | default('Furatena') }}{% end %}{% end %}
{% block head %}
{% if pr_preview | default(false) %}
{% end %}
{% if fura_form_proof() %}
{% end %}
{% block head_extra %}
{% include "partials/docs_head_assets.html" %}
{% end %}
{% end %}
{% block shell %}
{% if pr_preview | default(false) %}
{% end %}
{% include "partials/search_modal.html" %}
{% block content %}
{% block page_root %}{% end %}
{% end %}
{{ shell_runtime_script() }}
{{ toast_container() }}
{% include "partials/docs_runtime_scripts.html" %}
{% end %}