e361c20008
Now that we have a page for etherpads, navigation between the various page is a bit awkward. This change introduces a common navbar across all pages, and makes sure the MOTD displays on all of them. This makes some of the links redundant, so we remove them. Change-Id: I57d02c505ced355d53bc79e0d8240ea63737eae3
10 lines
337 B
JavaScript
10 lines
337 B
JavaScript
// sets variable source to the animalTemplate id in index.html
|
|
var dsource = document.getElementById("MOTDTemplate").innerHTML;
|
|
|
|
// Handlebars compiles the above source into a template
|
|
var dtemplate = Handlebars.compile(dsource);
|
|
|
|
$.getJSON("ptg.json", function(json) {
|
|
document.getElementById("MOTD").innerHTML = dtemplate(json);
|
|
});
|