New front page and darker style

This commit is contained in:
Stefan Zermatten
2015-06-15 13:29:33 +02:00
parent 06ab7c5116
commit eebb88b6b1
18 changed files with 164 additions and 92 deletions

View File

@@ -4,18 +4,9 @@ Router.configure({
});
Router.plugin("ensureSignedIn", {
except: [
"home",
"characterSheet",
"atSignIn",
"atSignUp",
"atForgotPassword",
"atResetPwd",
"atEnrollAccount",
"atVerifyEmail",
"atResendVerificationEmail",
"loginButtons",
"notFound",
only: [
"profile",
"characterList",
]
});
@@ -94,4 +85,11 @@ Router.map(function() {
document.title = appName;
},
});
this.route("/guide", {
name: "guide",
onAfterAction: function() {
document.title = appName;
},
});
});