### Features

#### LQIP filter

The Twig filter `lqip` returns a [Low Quality Image Placeholder](https://www.guypo.com/introducing-lqip-low-quality-image-placeholders) (LQIP) as data URL.

```twig
{{ asset(image_path)|lqip }}
```

[Documentation →](/documentation/templates/#lqip)

_Example:_

```html
{% set photo_full = asset('/photo.jpeg') %}
{% set photo = photo_full|resize(640) %}
<div style="background-image:url({{ photo|lqip }});background-repeat:no-repeat;background-position:center;background-size:cover;">
  <a href="{{ url(photo_full) }}">{{ photo|html }}</a>
</div>
```

_Example of progressive loading of [images gallery](https://photo-stream-demo.cecil.app/):_

![LQIP low quality images](../../assets/images/news/LQIP-low-quality-images.png "Images are not loaded, only LQIP are visible in background.")

![Images loaded](../../assets/images/news/LQIP-images-loaded.png "Images completely loaded.")

### Docs

- _imgix_ CDN configuration added

### Miscs

- Dependencies updated
- Better image handling
