Skip to content

Instantly share code, notes, and snippets.

@jeanbza
Created January 28, 2015 15:30
Show Gist options
  • Save jeanbza/4de8667585c81f0b42c4 to your computer and use it in GitHub Desktop.
Save jeanbza/4de8667585c81f0b42c4 to your computer and use it in GitHub Desktop.
Something about JSP is just not pretty..

Handlebars:

{{#if people}}
  ... output person's info here...
{{/if}}

JSP (java templating):

<c:if test='${people}'>
  ... output person's info here
</c:if>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment