JavaScript Templates

We'll focus on using the Handlebars  and Mustache template libraries.  Other template systems will do similar things though, with different syntax.

<ul>
    {{#apples}}
    <li>{{.}}</li>
    {{/apples}}
  </ul>