# Basic Text Templates

### Basic Text Templates

```django
I have one {{ @pet.type }} named {{ @pet.name }}
```

The content inside the mustache brackets `{{` `}}` is called an expression. PixieBrix will fill the expressions with the available values when the brick is run. For example:

The simplest text templates insert dynamic content:

```html
I have one cat named Tiger
```
