diff --git a/content/docs/templates/imageops/contents.lr b/content/docs/templates/imageops/contents.lr index b224d855..3fc84fac 100644 --- a/content/docs/templates/imageops/contents.lr +++ b/content/docs/templates/imageops/contents.lr @@ -35,7 +35,7 @@ To access images from a different content folder, you would use: To retrieve only a specific image or attachment with a certain name you would use ```html+jinja -{% set my_image site.get('/myfolder').attachments.get('imagenameexample.jpg') %} +{% set my_image = site.get('/myfolder').attachments.get('imagenameexample.jpg') %}
```