Flexbox and Templating - lucasjwilber/seattle-301d52 GitHub Wiki
Handlebars is a really easy and concise way of adding and working with HTML templates in JS. It sort of allows you to use variables in your HTML by using Handlebars Expressions, which are encapsulated in {{}}. It also adds its own methods which can be combined with expressions to manipulate the HTML, which it calls Helpers. For example, in {capitalize this.name}} the capitalize helper can be combined with 'this.name' to get a variable, capitalize its contents, then turn it into HTML.