suefeng
2/1/2019 - 9:08 PM

Handlebars and Grid-A-Licious

$(document).ready(function(){
  "use strict";
  var source = $("#entries").html(),
  template = Handlebars.compile(source);
  $.getJSON("data/entries.js", function(data) {
    $("#content-placeholder").html(template(data));
  }).error(function() {
    console.log("error");
  });
});