Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Pulling two random images from folder

Started by Reinier 8 years ago · 2 replies · 1008 views
8 years ago

I hope my question isn't to trivial...
how to accomplish the following:

I want to pull several random images from a folder but would like to prevent doubles.

Im using this bit of code:

{% set image = page.media.all|randomize|first %}
{% if image %}
{{ image.cropResize(400,400).html('','','align-'~page.header.image_align) }}
{% endif %}


I use it twice, two images are pulled.... but allthough random, also double.
Is there a simple way for this? something like after randomize pull the |first&last from the generated aray? (if its an array being created that is)

8 years ago

You almost got it!
This should work

TWIG
{% set image = page.media.all|randomize %}
{% if image|first %}
{{ image|first.cropResize(400,400).html(’’,’’,‘align-’~page.header.image_align) }}
{{ image|last.cropResize(400,400).html(’’,’’,‘align-’~page.header.image_align) }}
{% endif %}
👍 1
8 years ago

First of, thanks for the reply; its greatly appreciated Paul.

At first no go, error images showed.
clearing the cache made your code work.

last edited 04/06/18 by Reinier

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by stuart young, 1 month ago
3 441 1 month ago
Themes & Styling · by Sebadamus, 1 month ago
5 457 1 month ago
Themes & Styling · by martynfoster735, 2 months ago
1 442 2 months ago
Themes & Styling · by Justin Young, 2 months ago
1 466 2 months ago
Themes & Styling · by Slebeig, 3 months ago
4 594 3 months ago