I’ve once again hit a wall with something that should be quite simple to solve.
I have following template code:
<div class="c50l">
<div class="subcl">
<!-- Insert your subtemplate content here -->
</div>
</div>
<div class="c50r">
<div class="subcr">
<!-- Insert your subtemplate content here -->
</div>
</div>And content in a single FFMatrix entry which I would like to evenly distribute into the two subcl and subcr divs.
The result should be something like this (left out additional divs around elements for simplicity):
<div class="c50l">
<div class="subcl">
Image 1
Title 1
Text 1
Image 3
Title 3
Text 3
Image 5
Title 5
Text 5
</div>
</div>
<div class="c50r">
<div class="subcr">
Image 2
Title 2
Text 2
Image 4
Title 4
Text 4
Image 6
Title 6
Text 6
</div>
</div>It could also just be
1 4
2 5
3 6
etc. or completely random as long as half is in the one subcolumn and the other half in the other.