Initial copy of old site.

This commit is contained in:
2018-08-14 10:56:12 -07:00
parent 94000458e4
commit 7c516cf4d4
112 changed files with 1822 additions and 1791 deletions

View File

@@ -1,2 +1,13 @@
import './Home.html';
import './Home.html';
Template.Home.events({
'mouseenter .menuTile': function (event, template) {
event.preventDefault();
$(event.target).find(".menuHeaderBackground").show();
},
'mouseleave .menuTile': function (event, template) {
event.preventDefault();
$(event.target).find(".menuHeaderBackground").hide();
}
});