<table>
<tr>
<td>Image</td>
<td>Product</td>
<td>Price</td>
</tr>
{% for line_item in visitor.recommended_offers %}
<tr>
<td><img src="{{ line_item.picture }}" /></td>
<td><a href="{{ line_item.url }}">{{ line_item.name }}</a></td>
<td>{{ line_item.price }}</td>
</tr>
{% endfor %}
</table>
<a href="{{line_item.url}}" style="text-decoration: none; color: #006699;">{{ line_item.name }}</a>
{{ line_item.description }}
{% if forloop.index < 30 %}…{% endif %}