Skip to content

Instantly share code, notes, and snippets.

@haydenmuhl
Created August 12, 2011 06:43
Show Gist options
  • Save haydenmuhl/1141587 to your computer and use it in GitHub Desktop.
Save haydenmuhl/1141587 to your computer and use it in GitHub Desktop.
<ul>
<g:each in="${list}" var="item">
<li><render template="itemTemplate" model="[item: item]"/></li>
</g:each>
</ul>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
${item.name}
<ul>
<g:each in="${list}" var="item">
<render template="itemTemplate" model="[item: item]"/>
</g:each>
</ul>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<li>${item.name}</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment