Skip to content

Instantly share code, notes, and snippets.

@jessecookedesign
Created October 20, 2020 21:42
HTML for all iterations of a list except the last using RPL
<#list productNames as names>
${names}
<!-- If there's another item after this iteration, add an <hr> -->
<#if names_has_next>
<hr>
</#if>
</#list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment