Changed Appreciation to Jr High Summer; Fixed sorting of internships such that changes get properly sorted; Added a proper date on news & notices on the home page using the page's update timestamp.

This commit is contained in:
Wynne Crisman
2019-01-07 16:53:54 -08:00
parent 0593c2421a
commit cac2ad9c41
21 changed files with 160 additions and 109 deletions

View File

@@ -27,6 +27,10 @@ AccountsTemplates.configureRoute('forgotPwd', {
name: 'ForgotPwd',
path: '/ForgotPwd'
});
AccountsTemplates.configureRoute('changePwd', {
name: 'ChangePwd',
path: '/ChangePwd'
});
pri.route("/Admin/Internships", {
name: "InternshipsEditor",
@@ -56,8 +60,8 @@ pri.route("/Admin/UserManagement", {
BlazeLayout.render("Admin", {content: "UserManagement"});
}
});
pri.route("/Admin/Appreciation", {
name: "AppreciationEditor",
pri.route("/Admin/JrHighSummer", {
name: "JrHighSummerEditor",
action: function(params, queryParams) {
require("/imports/ui/Admin/PageEditor.js");
BlazeLayout.render("Admin", {content: "PageEditor"});
@@ -187,8 +191,8 @@ pub.route("/PhotoGallery", {
BlazeLayout.render("Public", {content: "PhotoGallery"});
}
});
pub.route("/Appreciation", {
name: 'Appreciation',
pub.route("/JrHighSummer", {
name: 'JrHighSummer',
action: function(params, queryParams) {
require("/imports/ui/EditablePage.js");
BlazeLayout.render("Public", {content: "EditablePage"});