From 4aa4e3eacc36ae54c49ac94cf40594f33c4d9b1d Mon Sep 17 00:00:00 2001 From: "Cheng-Han, Wu" Date: Wed, 11 May 2016 14:37:54 +0800 Subject: [PATCH] Add help and help modal with contacts, documents, cheatsheet --- public/views/body.ejs | 3 +- public/views/header.ejs | 8 +- public/views/help-modal.ejs | 132 +++++++++++++++++++ public/views/index.ejs | 2 +- public/views/{modal.ejs => signin-modal.ejs} | 0 5 files changed, 139 insertions(+), 6 deletions(-) create mode 100644 public/views/help-modal.ejs rename public/views/{modal.ejs => signin-modal.ejs} (100%) diff --git a/public/views/body.ejs b/public/views/body.ejs index 771da88..11bccfe 100644 --- a/public/views/body.ejs +++ b/public/views/body.ejs @@ -151,4 +151,5 @@ -<%- include modal %> \ No newline at end of file +<%- include signin-modal %> +<%- include help-modal %> \ No newline at end of file diff --git a/public/views/header.ejs b/public/views/header.ejs index 6218187..bbabe77 100644 --- a/public/views/header.ejs +++ b/public/views/header.ejs @@ -59,7 +59,7 @@
  • HTML
  • -
  • Feedback +
  • Help
  • @@ -80,9 +80,9 @@ - - - + + + diff --git a/public/views/help-modal.ejs b/public/views/help-modal.ejs new file mode 100644 index 0000000..1534226 --- /dev/null +++ b/public/views/help-modal.ejs @@ -0,0 +1,132 @@ + + \ No newline at end of file diff --git a/public/views/index.ejs b/public/views/index.ejs index 8c10e88..69b525e 100644 --- a/public/views/index.ejs +++ b/public/views/index.ejs @@ -174,7 +174,7 @@ - <%- include modal %> + <%- include signin-modal %> diff --git a/public/views/modal.ejs b/public/views/signin-modal.ejs similarity index 100% rename from public/views/modal.ejs rename to public/views/signin-modal.ejs