How to write cycle helper for this code

<tr>     <td width="50%" style="border-left: solid 1px #ebeae9;">         <a href="#">Headline tortor sit amet tellus interdum </a>     </td>     <td width="50%" style="border-right: solid 1px #ebeae9;">         <a href="#">Headline tortor sit amet tellus interdum </a>     </td> </tr> <tr>     <td width="50%" style="border-left: solid 1px #ebeae9; border-bottom:1px solid #ebeae9;">         <a href="#">Headline tortor sit amet tellus interdum </a>     </td>     <td width="50%" style="border-right: solid 1px #ebeae9; border-bottom: solid 1px #ebeae9;">         <a href="#">Headline sit amet tellus interdum </a>     </td> </tr>

Hi,

I'm not sure why you need a cycle helper for this. Each <tr> is identical, it's just the style of the two <td>s within the row that change. A standard iteration would be fine over each row.

Regards

Robin