From c1ce89359a7b54ec97b54ce577e5534c180c5c4b Mon Sep 17 00:00:00 2001 From: HumairAK Date: Mon, 18 Jul 2016 06:49:16 -0400 Subject: Various fixes, see changelog for details. --- views/about.hbs | 27 +++++ views/exams.hbs | 40 +++++++ views/index.hbs | 36 ++++++ views/layouts/layout.hbs | 33 ++++++ views/partials/footer.hbs | 21 ++++ views/partials/header.hbs | 59 ++++++++++ views/partials/login.hbs | 28 +++++ views/partials/registration.hbs | 49 ++++++++ views/questions.hbs | 81 +++++++++++++ views/user_profile_alt.hbs | 251 ++++++++++++++++++++++++++++++++++++++++ views/user_solutions.hbs | 125 ++++++++++++++++++++ 11 files changed, 750 insertions(+) create mode 100644 views/about.hbs create mode 100644 views/exams.hbs create mode 100644 views/index.hbs create mode 100644 views/layouts/layout.hbs create mode 100644 views/partials/footer.hbs create mode 100644 views/partials/header.hbs create mode 100644 views/partials/login.hbs create mode 100644 views/partials/registration.hbs create mode 100644 views/questions.hbs create mode 100644 views/user_profile_alt.hbs create mode 100644 views/user_solutions.hbs (limited to 'views') diff --git a/views/about.hbs b/views/about.hbs new file mode 100644 index 0000000..0d19d8d --- /dev/null +++ b/views/about.hbs @@ -0,0 +1,27 @@ +
+ +
\ No newline at end of file diff --git a/views/exams.hbs b/views/exams.hbs new file mode 100644 index 0000000..fc9e7d5 --- /dev/null +++ b/views/exams.hbs @@ -0,0 +1,40 @@ +
+ +
diff --git a/views/index.hbs b/views/index.hbs new file mode 100644 index 0000000..9826209 --- /dev/null +++ b/views/index.hbs @@ -0,0 +1,36 @@ +
+
+ +
+
+

The solutions to all your problems

+
+ + +
+ Solutions.repo is a community driven service that provides visitors + with solutions to past UofT Exams. +
+
+
+
+
diff --git a/views/layouts/layout.hbs b/views/layouts/layout.hbs new file mode 100644 index 0000000..987072f --- /dev/null +++ b/views/layouts/layout.hbs @@ -0,0 +1,33 @@ +!doctype html> + + + + + Solutions Repo + + + + + + + + + + + + + + + + + + + + + {{> header }} + {{{ body }}} + {{> footer }} + {{> login }} + {{> registration }} + + \ No newline at end of file diff --git a/views/partials/footer.hbs b/views/partials/footer.hbs new file mode 100644 index 0000000..eecc2f7 --- /dev/null +++ b/views/partials/footer.hbs @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/views/partials/header.hbs b/views/partials/header.hbs new file mode 100644 index 0000000..d4c51e3 --- /dev/null +++ b/views/partials/header.hbs @@ -0,0 +1,59 @@ + \ No newline at end of file diff --git a/views/partials/login.hbs b/views/partials/login.hbs new file mode 100644 index 0000000..521c730 --- /dev/null +++ b/views/partials/login.hbs @@ -0,0 +1,28 @@ + + \ No newline at end of file diff --git a/views/partials/registration.hbs b/views/partials/registration.hbs new file mode 100644 index 0000000..36e02ac --- /dev/null +++ b/views/partials/registration.hbs @@ -0,0 +1,49 @@ + + \ No newline at end of file diff --git a/views/questions.hbs b/views/questions.hbs new file mode 100644 index 0000000..8b69f8f --- /dev/null +++ b/views/questions.hbs @@ -0,0 +1,81 @@ +
+ +
diff --git a/views/user_profile_alt.hbs b/views/user_profile_alt.hbs new file mode 100644 index 0000000..624e2c6 --- /dev/null +++ b/views/user_profile_alt.hbs @@ -0,0 +1,251 @@ +
+ +
\ No newline at end of file diff --git a/views/user_solutions.hbs b/views/user_solutions.hbs new file mode 100644 index 0000000..8380d53 --- /dev/null +++ b/views/user_solutions.hbs @@ -0,0 +1,125 @@ +
+ +
-- cgit v1.2.3