The design I want to achieve is as follows:
<div>
<div class="row">
<div></div>
<div></div>
</div>
<div class="row">
<div></div>
<div></div>
</div>
<div class="row">
<div></div>
<div></div>
</div>
</div>
While this code generates the divs, I'm struggling with adding separators between each pair of items. I believe Angular should provide a simple solution for this.
<div>
<div class="row">
<div ng-repeat="object in objects"></div>
</div>
</div>