Merge pull request #170 from Jossnaz/image-doc
/content/docs/templates/imageops added way to access single images an…
This commit is contained in:
commit
2e2923a7ac
|
@ -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>
|
<div class="image"><img src="{{ image|url }}"></div>
|
||||||
{% endfor %}
|
{% 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
|
## Accessing Image Data
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue