I am using xml and xslt 1.0. Suppose there is my xml structure:
<people>
<person></person>
<person></person>
...
</peoble>
Then I want to show it like this: N is the node "person" .
I am using bootstrap, and the web content is designed like this:
<div class="row">
<div>Person1</div>
<div>Person2</div>
</div>
My problem is, I don't know how to put two elements in the same row. I can't put the first, and later the second, because once the tag row is closed, it can't be open again, and the result is:
Row 1: N1
Row 2: N2
And I want:
Row 1: N1 N2
Row 2: N3 N4
Thanks