# Read Time

Provide an estimate of the read time in minutes based on a given number of words per minute. Defaults to 200/wpm.

```yaml
---
title: A long post
---
Pretend there are lots of words here...
```

::tabs

::tab antlers
```antlers
<h1>{{ title }}</h1>
<p>{{ content | read_time(180) }} min</p>
```
::tab blade
```blade
<h1>{{ $title }}</h1>
<p>{{ Statamic::modify($content)->readTime(180) }} min</p>
```
::

```html
<h1>A long post</h1>
<p>10 min</p>
```
