Skip to content

Instantly share code, notes, and snippets.

@arbarlow
Created September 10, 2011 16:19
Show Gist options
  • Select an option

  • Save arbarlow/1208488 to your computer and use it in GitHub Desktop.

Select an option

Save arbarlow/1208488 to your computer and use it in GitHub Desktop.
<table>
{foreach $names as $name}
{strip}
<tr bgcolor="{cycle values="#eeeeee,#dddddd"}">
<td>{$name}</td>
</tr>
{/strip}
{/foreach}
</table>
<table>
{foreach $users as $user}
{strip}
<tr bgcolor="{cycle values="#aaaaaa,#bbbbbb"}">
<td>{$user.name}</td>
<td>{$user.phone}</td>
</tr>
{/strip}
{/foreach}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment