Final Update From Caleb

Incorporated all Caleb's changes
This commit is contained in:
2018-08-23 16:58:50 -07:00
parent 2593d0f977
commit 14bd554d35
206 changed files with 2661 additions and 84 deletions

View File

@@ -149,7 +149,7 @@ pub.route("/News&Notices", {
name: 'News&Notices',
action: function(params, queryParams) {
require("/imports/ui/News&Notices.js");
BlazeLayout.render("Public", {content: "News&Notices"});
BlazeLayout.render("Public", {content: "NewsNotices"});
}
});
pub.route("/PhotoGallery", {
@@ -173,3 +173,10 @@ pub.route("/HowCanYouHelp", {
BlazeLayout.render("Public", {content: "Support"});
}
});
pub.route("/CurrentBoard", {
name: 'CurrentBoard',
action: function(params, queryParams) {
require("/imports/ui/CurrentBoard.js");
BlazeLayout.render("Public", {content: "CurrentBoard"});
}
});