Email With Columns
Special considerations for creating FeedOtter HTML templates with content laid out in columns.
Basic Example
<!--## [% if feedotter.posts is not empty %] ##-->
<table width="100%"><tr><td width="100%">
<!--## [% for row in feedotter.posts | batch(2) %] ##-->
<tr>
<!--## [% for post in row|slice(0,1) %] ##-->
<td>
//column 1 content
[[post.post_title]]
</td>
<!--## [% endfor %] ##-->
<!--## [% for post in row|slice(1,1) %] ##-->
<td>
//column 2 content
[[post.post_title]]
</td>
<!--## [% endfor %] ##-->
</tr>
<!--## [% endfor %] ##-->
</td></tr><table>
<!--## [% endif %] ##-->

Last updated
