/content/docs/templates/imageops added way to access single images and cross content folder image access

This commit is contained in:
lukas 2017-12-13 08:59:40 -05:00
parent 7c0cb368fa
commit baaa63cafd
1 changed files with 19 additions and 0 deletions

View File

@ -23,6 +23,25 @@ the query. For instance this iterates over all attached images of a page:
<div class="image"><img src="{{ image|url }}"></div>
{% endfor %}
```
<br/>
To access images from a different content folder, you would use:
```html+jinja
{% for image in site.query('/myfolder').attachments.images %}
<div class="image"><img src="{{ image|url }}"></div>
{% endfor %}
```
<br/>
To retrieve only a specific image or attachment with a certain name you would use
```html+jinja
{% set my_image site.query('/myfolder').attachments.get('imagenameexample.jpg') %}
<div class="image"><img src="{{ my_image|url }}"></div>
```
## Accessing Image Data