I am very new to Jinja2 and I want to show 3 different things in line, repeating it 2 times so I get 3x3 block. Here is my code now:
{% for item in recommendations('someID', 3) %}
This gives me only 3 things which are displayed vertically. How can I make it to display 3 things horizontally and then repeat it 2 more times? Thank you in advance.