# Panel box

A custom directive to creates boxes on subordinate `index.rst` files.

#### WARNING
Do not use the panel-box on the root `index.rst`.

## Syntax

```rst
.. panel-box::
   <options>

   <text>
```

## Options

The `panel-box` directive supports the following options:

| Option   | Type   | Required                                                  | Example Value   | Description       |
|----------|--------|-----------------------------------------------------------|-----------------|-------------------|
| `title`  | string | <i class="inline-icon icon-check" aria-hidden="true"></i> | Lorem ipsum     | Hero box title.   |
| `class`  | string |                                                           |                 | Custom CSS class. |

## Usage

For example, using:

```rst
.. panel-box::
   :title: Admin

   Test
```

Results in:


            <div class="cell ">
                <div class="panel">
                    <h5 class="panel_\_title">Admin</h5>
            
Test

</div></div>
