You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mateusz Szczap edited this page Jun 23, 2013
·
4 revisions
{namespace soy.example}
/**
* Word list
* @param words The words to display
*/
{template .clientWords}
<ul>
{foreach $word in $words}
<li>{$word}</li>
{/foreach}
</ul>
{/template}