# Output Frame (No Title)

The `output-frame` option adds a bordered container around cell output without a title label.


## Framed output (no title)


``` python
from gdtest_mock_code import greet
greet("framed")
```


    'Hello, framed!'


## Framed output with mock cell


``` python
gdtest_mock_code.add(5, 5)
```


    10


## Unframed output (baseline)


``` python
from gdtest_mock_code import greet
greet("no frame")
```


    'Hello, no frame!'


The first two outputs should have a border but no title header. The third should render as a normal cell output.
