diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-05-25 11:17:42 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-05-25 11:17:42 +0200 |
commit | e582c3b84c6090b08f33d599c354968fcd868d14 (patch) | |
tree | b6de1b7b1f708bf9126ccb709d5129e91a67c7d5 /app/views/project | |
parent | changed what gets collected (diff) | |
download | Divid-e582c3b84c6090b08f33d599c354968fcd868d14.tar.gz |
moved and renamed files to match the filesetup we want.
havebeen using a dev-setup till now.
Diffstat (limited to '')
-rw-r--r-- | app/views/project/newProject.ejs (renamed from views/newProject.ejs) | 6 | ||||
-rw-r--r-- | app/views/project/participants.ejs (renamed from views/projectParticipants.ejs) | 6 | ||||
-rw-r--r-- | app/views/project/post.ejs (renamed from views/projectPost.ejs) | 6 | ||||
-rw-r--r-- | app/views/project/project.ejs (renamed from views/project.ejs) | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/views/newProject.ejs b/app/views/project/newProject.ejs index facedcf..2101138 100644 --- a/views/newProject.ejs +++ b/app/views/project/newProject.ejs @@ -1,8 +1,8 @@ -<% include header %> +<% include ../templates/header %> </head> <body> - <% include navbar %> + <% include ../templates/navbar %> <!-- Wrapper ================================================== --> @@ -74,6 +74,6 @@ </div><!-- /div.#wrapper --> -<% include footer %> +<% include ../templates/footer %> </body> </html> diff --git a/views/projectParticipants.ejs b/app/views/project/participants.ejs index 3af9c10..4341a4f 100644 --- a/views/projectParticipants.ejs +++ b/app/views/project/participants.ejs @@ -1,8 +1,8 @@ -<% include header %> +<% include ../templates/header %> </head> <body> - <% include navbar %> + <% include ../templates/navbar %> <!-- Wrapper ================================================== --> @@ -50,6 +50,6 @@ </div><!-- /div.#wrapper --> -<% include footer %> +<% include ../templates/footer %> </body> </html> diff --git a/views/projectPost.ejs b/app/views/project/post.ejs index 710726e..5e8f283 100644 --- a/views/projectPost.ejs +++ b/app/views/project/post.ejs @@ -1,8 +1,8 @@ -<% include header %> +<% include ../templates/header %> </head> <body> - <% include navbar %> + <% include ../templates/navbar %> <!-- Wrapper ================================================== --> @@ -91,7 +91,7 @@ </div><!-- /div.#wrapper --> -<% include footer %> +<% include ../templates/footer %> <!-- <script> $(".selectAll").click(function() { $('#participants').children().attr('selected','selected'); diff --git a/views/project.ejs b/app/views/project/project.ejs index dedd5e4..7e06dad 100644 --- a/views/project.ejs +++ b/app/views/project/project.ejs @@ -1,8 +1,8 @@ -<% include header %> +<% include ../templates/header %> </head> <body> - <% include navbar %> + <% include ../templates/navbar %> <!-- Wrapper ================================================== --> @@ -190,7 +190,7 @@ </div><!-- /div.#wrapper --> -<% include footer %> +<% include ../templates/footer %> <script src="/js/Chart.min.js"></script> <script> var data = { |