From 2c5a8737aa45a05729f1a3883348899a801ea9a2 Mon Sep 17 00:00:00 2001 From: nicoleiocana <44947175+nicoleiocana@users.noreply.github.com> Date: Fri, 1 May 2020 17:03:06 -0700 Subject: [PATCH] Set my_image correctly --- content/docs/templates/imageops/contents.lr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') %}
```