diff --git a/README.md b/README.md index d2e35ca..9a8b846 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,216 @@ -# Startup engineer camp +# Startup Engineering Camp #1 -[Startup Engineering Camp #1](https://github.com/moko365/startup-engineering-camp/tree/master/camp1-booklog) +## 關於 + +由 Moko365 所成立的創業課程訓練營。訓練課程著重實際的開發面,訴求如何把一個新創的想法,透過工程技術產出實際的成果,這就是 Startup Engineering 課程的目標。 + +對創業者來說,比開設公司更重要的工作,就是做出想法。 典型的 Startup 課程,著重「創業」層面;Startup Engineering 則看重「實現想法」的工程面。 + +Startup Engineering 源自史丹佛大學今年新開設的 Startup Engineering 課程。這門課程講究如何利用開源工具、外部資源與 HTML5 技術,將想法創作出來。透過 Startup Engineering 課程,導師們將分享如何以開源工具與 HTML5 技術等,將想法變成實際的成品。 + +軟體專案的管理技術,因為 Open Innovation 的文化,也產生巨大的改變。Startup Engineering 也將介紹,如何採用新的管理方式來運作你的軟體專案 。我們也不定時邀請業界導師,和大家討論 Startup 的創業層面。 + +## Reference Course + +- [Startup Engineering on Cousera](https://class.coursera.org/startup-001/class) +- [nodejs oveview on Mokoversity](http://www.mokoversity.com/course/html5/nodejs-overview) +- [bootstrap & html5 overview on Mokoversity](http://www.mokoversity.com/course/html5/bootstrap-html5-intro) +- [jQuery overview on Mokoversity](http://www.mokoversity.com/course/html5/jquery-overview) + + +## Stage 1 + +### Version control with Github + +- 在 [github](https://github.com) 上建立一個 repository + +``` +git clone +git add files +git commit +git push origin master +git pull +git checkout files +``` + +### Fast prototyping in Bootstrap (index.html) + +- [jQuery](http://jquery.com) +- [bootstrap](http://getbootstrap.com/) + +### Use jade template engine (jade, html2jade), layout (header, footer) + +- [jade](http://jade-lang.com/) + + ``` + $ jade templateFolderName + $ jade template.jade + $ jade views/*.jade -o public/ + ``` + +- [html2jade](https://github.com/donpark/html2jade) + + ``` + $ html2jade *.html + $ html2jade *.html -o outFolder + ``` + +### Extract project structure + +``` +. +.bowerrc +.editorconfig +.gitignore +Gruntfile.js +LICENSE +bower.json +package.json +|-public + |---css + |---fonts + |---images + |---js + |---vendor + |-----bootstrap + |-----jquery +|-fixes +|-sass +|-schema +|-scripts +|-utilities +|-views +``` + +### Import JavaScript and CSS (Bootstrap, jQuery, custom) + +## Stage 2 + +### Use front-end package management + +- [bower](http://bower.io) + + ``` + $ npm install -g bower + $ bower install bootstrap + ``` + + ``` + $ bower init + $ bower install bootstrap --save + $ bower list + $ bower uninstall bootstrap --save + ``` + +**.bowerrc** +``` +{ + "directory": "public/vendor" +} +``` + +### Application Server: Node and Express + +- [express](http://expressjs.com/) + + ``` + $ npm install -g express + $ express + $ node app.js + ``` + + +### Use back-end package management + +- [npm](http://npmjs.org) + + ``` + $ npm i + ``` + +## Stage 3 + +### Use stylesheet language - Sass + +- [sass](http://sass-lang.com/) + + - convert sass/scss to css + ``` + $ sass sass/style.sass:public/css/style.css + ``` + + - convert css to sass/scss + ``` + $ sass-convert -F css -T sass public/css/wiki.css sass/wiki.sass + ``` + +### Create grunt task + +- [grunt](http://gruntjs.com) + - grunt-exec + - grunt-contrib-sass + - grunt-contrib-uglify + - grunt-contrib-watch + + ``` + $ npm install -g grunt + $ npm install grunt --save-dev + $ npm search grunt-contrib + $ npm install grunt-exec --save-dev + $ npm install grunt-contrib-sass --save-dev + $ npm install grunt-contrib-uglify --save-dev + $ npm install grunt-contrib-watch --save-dev + ``` + +## Stage 4 + +### Define Restful API + +- /books/id/collections/index +- /books/id/collections/cover_image +- /books/id/collections/chapter/1 +- /books/id/collections/comments + +#### JSON Data + +``` +{ + "chapter1" : "第1課:手機與瀏覽器就是HTML5", + "filename" : "CS_LESSON_1" +} +``` + +### Implement CRUD + +- [MongoDB](http://www.mongodb.org) + +### Backbone Way with CRUD API + +- [underscore](underscorejs.org) +- [Backbone](http://backbonejs.org/) + + ``` + Create - POST - model.save + Read - GET - model.fetch + Update - PUT - model.save + Delete - DELETE - model.destroy + ``` + +## Stage 5 + +- [forever](https://github.com/nodejitsu/forever) + + ``` + $ npm install -g forever-cli + $ forever start -w app.js + ``` + +- [winston](https://github.com/flatiron/winston) +- Auto deploy with github hook + - [node-hook](https://github.com/hankwang/node-github-hook-deploy) +- Deploy on heroku or AWS + +## Additional + +- [editorconfig](http://editorconfig.org) +- [sublime text](http://www.sublimetext.com) diff --git a/camp1-booklog/README.md b/camp1-booklog/README.md deleted file mode 100644 index 9a8b846..0000000 --- a/camp1-booklog/README.md +++ /dev/null @@ -1,216 +0,0 @@ -# Startup Engineering Camp #1 - -## 關於 - -由 Moko365 所成立的創業課程訓練營。訓練課程著重實際的開發面,訴求如何把一個新創的想法,透過工程技術產出實際的成果,這就是 Startup Engineering 課程的目標。 - -對創業者來說,比開設公司更重要的工作,就是做出想法。 典型的 Startup 課程,著重「創業」層面;Startup Engineering 則看重「實現想法」的工程面。 - -Startup Engineering 源自史丹佛大學今年新開設的 Startup Engineering 課程。這門課程講究如何利用開源工具、外部資源與 HTML5 技術,將想法創作出來。透過 Startup Engineering 課程,導師們將分享如何以開源工具與 HTML5 技術等,將想法變成實際的成品。 - -軟體專案的管理技術,因為 Open Innovation 的文化,也產生巨大的改變。Startup Engineering 也將介紹,如何採用新的管理方式來運作你的軟體專案 。我們也不定時邀請業界導師,和大家討論 Startup 的創業層面。 - -## Reference Course - -- [Startup Engineering on Cousera](https://class.coursera.org/startup-001/class) -- [nodejs oveview on Mokoversity](http://www.mokoversity.com/course/html5/nodejs-overview) -- [bootstrap & html5 overview on Mokoversity](http://www.mokoversity.com/course/html5/bootstrap-html5-intro) -- [jQuery overview on Mokoversity](http://www.mokoversity.com/course/html5/jquery-overview) - - -## Stage 1 - -### Version control with Github - -- 在 [github](https://github.com) 上建立一個 repository - -``` -git clone -git add files -git commit -git push origin master -git pull -git checkout files -``` - -### Fast prototyping in Bootstrap (index.html) - -- [jQuery](http://jquery.com) -- [bootstrap](http://getbootstrap.com/) - -### Use jade template engine (jade, html2jade), layout (header, footer) - -- [jade](http://jade-lang.com/) - - ``` - $ jade templateFolderName - $ jade template.jade - $ jade views/*.jade -o public/ - ``` - -- [html2jade](https://github.com/donpark/html2jade) - - ``` - $ html2jade *.html - $ html2jade *.html -o outFolder - ``` - -### Extract project structure - -``` -. -.bowerrc -.editorconfig -.gitignore -Gruntfile.js -LICENSE -bower.json -package.json -|-public - |---css - |---fonts - |---images - |---js - |---vendor - |-----bootstrap - |-----jquery -|-fixes -|-sass -|-schema -|-scripts -|-utilities -|-views -``` - -### Import JavaScript and CSS (Bootstrap, jQuery, custom) - -## Stage 2 - -### Use front-end package management - -- [bower](http://bower.io) - - ``` - $ npm install -g bower - $ bower install bootstrap - ``` - - ``` - $ bower init - $ bower install bootstrap --save - $ bower list - $ bower uninstall bootstrap --save - ``` - -**.bowerrc** -``` -{ - "directory": "public/vendor" -} -``` - -### Application Server: Node and Express - -- [express](http://expressjs.com/) - - ``` - $ npm install -g express - $ express - $ node app.js - ``` - - -### Use back-end package management - -- [npm](http://npmjs.org) - - ``` - $ npm i - ``` - -## Stage 3 - -### Use stylesheet language - Sass - -- [sass](http://sass-lang.com/) - - - convert sass/scss to css - ``` - $ sass sass/style.sass:public/css/style.css - ``` - - - convert css to sass/scss - ``` - $ sass-convert -F css -T sass public/css/wiki.css sass/wiki.sass - ``` - -### Create grunt task - -- [grunt](http://gruntjs.com) - - grunt-exec - - grunt-contrib-sass - - grunt-contrib-uglify - - grunt-contrib-watch - - ``` - $ npm install -g grunt - $ npm install grunt --save-dev - $ npm search grunt-contrib - $ npm install grunt-exec --save-dev - $ npm install grunt-contrib-sass --save-dev - $ npm install grunt-contrib-uglify --save-dev - $ npm install grunt-contrib-watch --save-dev - ``` - -## Stage 4 - -### Define Restful API - -- /books/id/collections/index -- /books/id/collections/cover_image -- /books/id/collections/chapter/1 -- /books/id/collections/comments - -#### JSON Data - -``` -{ - "chapter1" : "第1課:手機與瀏覽器就是HTML5", - "filename" : "CS_LESSON_1" -} -``` - -### Implement CRUD - -- [MongoDB](http://www.mongodb.org) - -### Backbone Way with CRUD API - -- [underscore](underscorejs.org) -- [Backbone](http://backbonejs.org/) - - ``` - Create - POST - model.save - Read - GET - model.fetch - Update - PUT - model.save - Delete - DELETE - model.destroy - ``` - -## Stage 5 - -- [forever](https://github.com/nodejitsu/forever) - - ``` - $ npm install -g forever-cli - $ forever start -w app.js - ``` - -- [winston](https://github.com/flatiron/winston) -- Auto deploy with github hook - - [node-hook](https://github.com/hankwang/node-github-hook-deploy) -- Deploy on heroku or AWS - -## Additional - -- [editorconfig](http://editorconfig.org) -- [sublime text](http://www.sublimetext.com) diff --git a/camp1-booklog/stage4/wiki b/camp1-booklog/stage4/wiki deleted file mode 160000 index 0c31794..0000000 --- a/camp1-booklog/stage4/wiki +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0c317941bf5c428885c28758a9d82a629ef921f3 diff --git a/camp1-booklog/stage1-with-final-structure/.bowerrc b/stage1-with-final-structure/.bowerrc similarity index 100% rename from camp1-booklog/stage1-with-final-structure/.bowerrc rename to stage1-with-final-structure/.bowerrc diff --git a/camp1-booklog/stage1-with-final-structure/.editorconfig b/stage1-with-final-structure/.editorconfig similarity index 100% rename from camp1-booklog/stage1-with-final-structure/.editorconfig rename to stage1-with-final-structure/.editorconfig diff --git a/camp1-booklog/stage1-with-final-structure/.gitignore b/stage1-with-final-structure/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/.gitignore rename to stage1-with-final-structure/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/Gruntfile.js b/stage1-with-final-structure/Gruntfile.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/Gruntfile.js rename to stage1-with-final-structure/Gruntfile.js diff --git a/camp1-booklog/stage1-with-final-structure/LICENSE b/stage1-with-final-structure/LICENSE similarity index 100% rename from camp1-booklog/stage1-with-final-structure/LICENSE rename to stage1-with-final-structure/LICENSE diff --git a/camp1-booklog/stage1-with-final-structure/bower.json b/stage1-with-final-structure/bower.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/bower.json rename to stage1-with-final-structure/bower.json diff --git a/camp1-booklog/stage1-with-final-structure/fixes/.gitignore b/stage1-with-final-structure/fixes/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/fixes/.gitignore rename to stage1-with-final-structure/fixes/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/init.sh b/stage1-with-final-structure/init.sh old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/init.sh rename to stage1-with-final-structure/init.sh diff --git a/camp1-booklog/stage1-with-final-structure/package.json b/stage1-with-final-structure/package.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/package.json rename to stage1-with-final-structure/package.json diff --git a/camp1-booklog/stage1-with-final-structure/public/.gitignore b/stage1-with-final-structure/public/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/.gitignore rename to stage1-with-final-structure/public/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/public/contact.html b/stage1-with-final-structure/public/contact.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/contact.html rename to stage1-with-final-structure/public/contact.html diff --git a/camp1-booklog/stage1-with-final-structure/public/css/style.css b/stage1-with-final-structure/public/css/style.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/css/style.css rename to stage1-with-final-structure/public/css/style.css diff --git a/camp1-booklog/stage1-with-final-structure/public/css/wiki.css b/stage1-with-final-structure/public/css/wiki.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/css/wiki.css rename to stage1-with-final-structure/public/css/wiki.css diff --git a/camp1-booklog/stage1-with-final-structure/public/index.html b/stage1-with-final-structure/public/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/index.html rename to stage1-with-final-structure/public/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/js/main.js b/stage1-with-final-structure/public/js/main.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/js/main.js rename to stage1-with-final-structure/public/js/main.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/.bower.json b/stage1-with-final-structure/public/vendor/bootstrap/.bower.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/.bower.json rename to stage1-with-final-structure/public/vendor/bootstrap/.bower.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/CNAME b/stage1-with-final-structure/public/vendor/bootstrap/CNAME similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/CNAME rename to stage1-with-final-structure/public/vendor/bootstrap/CNAME diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/CONTRIBUTING.md b/stage1-with-final-structure/public/vendor/bootstrap/CONTRIBUTING.md similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/CONTRIBUTING.md rename to stage1-with-final-structure/public/vendor/bootstrap/CONTRIBUTING.md diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/Gruntfile.js b/stage1-with-final-structure/public/vendor/bootstrap/Gruntfile.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/Gruntfile.js rename to stage1-with-final-structure/public/vendor/bootstrap/Gruntfile.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/LICENSE b/stage1-with-final-structure/public/vendor/bootstrap/LICENSE similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/LICENSE rename to stage1-with-final-structure/public/vendor/bootstrap/LICENSE diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/README.md b/stage1-with-final-structure/public/vendor/bootstrap/README.md similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/README.md rename to stage1-with-final-structure/public/vendor/bootstrap/README.md diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_config.yml b/stage1-with-final-structure/public/vendor/bootstrap/_config.yml similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_config.yml rename to stage1-with-final-structure/public/vendor/bootstrap/_config.yml diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/ads.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/ads.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/ads.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/ads.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/footer.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/footer.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/footer.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/footer.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/header.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/header.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/header.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/header.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-components.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-components.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-components.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-components.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-css.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-css.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-css.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-css.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-customize.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-customize.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-customize.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-customize.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-getting-started.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-getting-started.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-getting-started.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-getting-started.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-javascript.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-javascript.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-javascript.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-javascript.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-main.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-main.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-main.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/nav-main.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/old-bs-docs.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/old-bs-docs.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/old-bs-docs.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/old-bs-docs.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/social-buttons.html b/stage1-with-final-structure/public/vendor/bootstrap/_includes/social-buttons.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_includes/social-buttons.html rename to stage1-with-final-structure/public/vendor/bootstrap/_includes/social-buttons.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_layouts/default.html b/stage1-with-final-structure/public/vendor/bootstrap/_layouts/default.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_layouts/default.html rename to stage1-with-final-structure/public/vendor/bootstrap/_layouts/default.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_layouts/home.html b/stage1-with-final-structure/public/vendor/bootstrap/_layouts/home.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/_layouts/home.html rename to stage1-with-final-structure/public/vendor/bootstrap/_layouts/home.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/css/docs.css b/stage1-with-final-structure/public/vendor/bootstrap/assets/css/docs.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/css/docs.css rename to stage1-with-final-structure/public/vendor/bootstrap/assets/css/docs.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/css/pygments-manni.css b/stage1-with-final-structure/public/vendor/bootstrap/assets/css/pygments-manni.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/css/pygments-manni.css rename to stage1-with-final-structure/public/vendor/bootstrap/assets/css/pygments-manni.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png b/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png rename to stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png b/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png rename to stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png b/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png rename to stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png b/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png rename to stage1-with-final-structure/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/favicon.png b/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/favicon.png similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/ico/favicon.png rename to stage1-with-final-structure/public/vendor/bootstrap/assets/ico/favicon.png diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/application.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/application.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/application.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/application.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/customizer.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/customizer.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/customizer.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/customizer.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/filesaver.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/filesaver.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/filesaver.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/filesaver.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/holder.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/holder.js old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/holder.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/holder.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/html5shiv.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/html5shiv.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/html5shiv.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/html5shiv.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jquery.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jquery.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jquery.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/jquery.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jszip.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jszip.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/jszip.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/jszip.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/less.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/less.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/less.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/less.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/raw-files.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/raw-files.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/raw-files.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/raw-files.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/respond.min.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/respond.min.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/respond.min.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/respond.min.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/uglify.js b/stage1-with-final-structure/public/vendor/bootstrap/assets/js/uglify.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/assets/js/uglify.js rename to stage1-with-final-structure/public/vendor/bootstrap/assets/js/uglify.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/bower.json b/stage1-with-final-structure/public/vendor/bootstrap/bower.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/bower.json rename to stage1-with-final-structure/public/vendor/bootstrap/bower.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/browserstack.json b/stage1-with-final-structure/public/vendor/bootstrap/browserstack.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/browserstack.json rename to stage1-with-final-structure/public/vendor/bootstrap/browserstack.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/components.html b/stage1-with-final-structure/public/vendor/bootstrap/components.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/components.html rename to stage1-with-final-structure/public/vendor/bootstrap/components.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/composer.json b/stage1-with-final-structure/public/vendor/bootstrap/composer.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/composer.json rename to stage1-with-final-structure/public/vendor/bootstrap/composer.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/css.html b/stage1-with-final-structure/public/vendor/bootstrap/css.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/css.html rename to stage1-with-final-structure/public/vendor/bootstrap/css.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/customize.html b/stage1-with-final-structure/public/vendor/bootstrap/customize.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/customize.html rename to stage1-with-final-structure/public/vendor/bootstrap/customize.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.css b/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.css rename to stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.min.css b/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.min.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.min.css rename to stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap-theme.min.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.css b/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.css rename to stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.min.css b/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.min.css rename to stage1-with-final-structure/public/vendor/bootstrap/dist/css/bootstrap.min.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot b/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot rename to stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg b/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg rename to stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf b/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf rename to stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff b/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff rename to stage1-with-final-structure/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.js b/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.js rename to stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.min.js b/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.min.js rename to stage1-with-final-structure/public/vendor/bootstrap/dist/js/bootstrap.min.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/carousel.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/carousel.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/carousel.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/carousel.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/carousel/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/grid.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/grid.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/grid.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/grid/grid.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/grid/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/grid/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/jumbotron.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/jumbotron.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/jumbotron.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/jumbotron/jumbotron.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/justified-nav.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/justified-nav.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/justified-nav.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/justified-nav/justified-nav.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/navbar.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/navbar.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/navbar.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/navbar/navbar.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/non-responsive.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/non-responsive.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/non-responsive.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/non-responsive/non-responsive.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.js b/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.js rename to stage1-with-final-structure/public/vendor/bootstrap/examples/offcanvas/offcanvas.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/carousel.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/carousel.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/carousel.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/carousel.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/grid.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/grid.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/grid.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/grid.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/jumbotron.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/justified-nav.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/justified-nav.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/justified-nav.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/justified-nav.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-static.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-static.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-static.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar-static.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/navbar.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/non-responsive.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/non-responsive.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/non-responsive.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/non-responsive.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/offcanvas.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/offcanvas.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/offcanvas.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/offcanvas.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sign-in.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sign-in.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sign-in.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sign-in.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/starter-template.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/starter-template.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/starter-template.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/starter-template.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/sticky-footer.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/theme.jpg b/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/theme.jpg similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/theme.jpg rename to stage1-with-final-structure/public/vendor/bootstrap/examples/screenshots/theme.jpg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/signin/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/signin.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/signin.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/signin/signin.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/signin/signin.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/starter-template.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/starter-template.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/starter-template.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/starter-template/starter-template.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/sticky-footer.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/sticky-footer.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/sticky-footer.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/sticky-footer/sticky-footer.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/index.html b/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/examples/theme/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/theme.css b/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/theme.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/examples/theme/theme.css rename to stage1-with-final-structure/public/vendor/bootstrap/examples/theme/theme.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot b/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot rename to stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg b/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg rename to stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf b/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf rename to stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff b/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff rename to stage1-with-final-structure/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/getting-started.html b/stage1-with-final-structure/public/vendor/bootstrap/getting-started.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/getting-started.html rename to stage1-with-final-structure/public/vendor/bootstrap/getting-started.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/index.html b/stage1-with-final-structure/public/vendor/bootstrap/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/javascript.html b/stage1-with-final-structure/public/vendor/bootstrap/javascript.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/javascript.html rename to stage1-with-final-structure/public/vendor/bootstrap/javascript.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/affix.js b/stage1-with-final-structure/public/vendor/bootstrap/js/affix.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/affix.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/affix.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/alert.js b/stage1-with-final-structure/public/vendor/bootstrap/js/alert.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/alert.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/alert.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/button.js b/stage1-with-final-structure/public/vendor/bootstrap/js/button.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/button.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/button.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/carousel.js b/stage1-with-final-structure/public/vendor/bootstrap/js/carousel.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/carousel.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/carousel.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/collapse.js b/stage1-with-final-structure/public/vendor/bootstrap/js/collapse.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/collapse.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/collapse.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/dropdown.js b/stage1-with-final-structure/public/vendor/bootstrap/js/dropdown.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/dropdown.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/dropdown.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/modal.js b/stage1-with-final-structure/public/vendor/bootstrap/js/modal.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/modal.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/modal.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/popover.js b/stage1-with-final-structure/public/vendor/bootstrap/js/popover.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/popover.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/popover.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/scrollspy.js b/stage1-with-final-structure/public/vendor/bootstrap/js/scrollspy.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/scrollspy.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/scrollspy.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tab.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tab.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tab.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tab.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/index.html b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/index.html similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/index.html rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/index.html diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/phantom.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/phantom.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/phantom.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/phantom.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/server.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/server.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/server.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/server.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/affix.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/affix.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/affix.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/affix.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/alert.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/alert.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/alert.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/alert.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/button.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/button.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/button.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/button.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/carousel.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/carousel.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/carousel.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/carousel.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/collapse.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/collapse.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/collapse.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/collapse.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/dropdown.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/dropdown.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/dropdown.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/dropdown.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/modal.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/modal.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/modal.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/modal.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/phantom.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/phantom.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/phantom.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/phantom.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/popover.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/popover.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/popover.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/popover.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/scrollspy.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/scrollspy.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/scrollspy.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/scrollspy.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tab.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tab.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tab.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tab.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tooltip.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tooltip.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tooltip.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/tooltip.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/transition.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/transition.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/transition.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/unit/transition.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/jquery.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/jquery.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/jquery.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/jquery.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.css b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.css similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.css rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.css diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tests/vendor/qunit.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tooltip.js b/stage1-with-final-structure/public/vendor/bootstrap/js/tooltip.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/tooltip.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/tooltip.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/transition.js b/stage1-with-final-structure/public/vendor/bootstrap/js/transition.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/js/transition.js rename to stage1-with-final-structure/public/vendor/bootstrap/js/transition.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/alerts.less b/stage1-with-final-structure/public/vendor/bootstrap/less/alerts.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/alerts.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/alerts.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/badges.less b/stage1-with-final-structure/public/vendor/bootstrap/less/badges.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/badges.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/badges.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/bootstrap.less b/stage1-with-final-structure/public/vendor/bootstrap/less/bootstrap.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/bootstrap.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/bootstrap.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/breadcrumbs.less b/stage1-with-final-structure/public/vendor/bootstrap/less/breadcrumbs.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/breadcrumbs.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/breadcrumbs.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/button-groups.less b/stage1-with-final-structure/public/vendor/bootstrap/less/button-groups.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/button-groups.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/button-groups.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/buttons.less b/stage1-with-final-structure/public/vendor/bootstrap/less/buttons.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/buttons.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/buttons.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/carousel.less b/stage1-with-final-structure/public/vendor/bootstrap/less/carousel.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/carousel.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/carousel.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/close.less b/stage1-with-final-structure/public/vendor/bootstrap/less/close.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/close.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/close.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/code.less b/stage1-with-final-structure/public/vendor/bootstrap/less/code.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/code.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/code.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/component-animations.less b/stage1-with-final-structure/public/vendor/bootstrap/less/component-animations.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/component-animations.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/component-animations.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/dropdowns.less b/stage1-with-final-structure/public/vendor/bootstrap/less/dropdowns.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/dropdowns.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/dropdowns.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/forms.less b/stage1-with-final-structure/public/vendor/bootstrap/less/forms.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/forms.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/forms.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/glyphicons.less b/stage1-with-final-structure/public/vendor/bootstrap/less/glyphicons.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/glyphicons.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/glyphicons.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/grid.less b/stage1-with-final-structure/public/vendor/bootstrap/less/grid.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/grid.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/grid.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/input-groups.less b/stage1-with-final-structure/public/vendor/bootstrap/less/input-groups.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/input-groups.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/input-groups.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/jumbotron.less b/stage1-with-final-structure/public/vendor/bootstrap/less/jumbotron.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/jumbotron.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/jumbotron.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/labels.less b/stage1-with-final-structure/public/vendor/bootstrap/less/labels.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/labels.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/labels.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/list-group.less b/stage1-with-final-structure/public/vendor/bootstrap/less/list-group.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/list-group.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/list-group.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/media.less b/stage1-with-final-structure/public/vendor/bootstrap/less/media.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/media.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/media.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/mixins.less b/stage1-with-final-structure/public/vendor/bootstrap/less/mixins.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/mixins.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/mixins.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/modals.less b/stage1-with-final-structure/public/vendor/bootstrap/less/modals.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/modals.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/modals.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/navbar.less b/stage1-with-final-structure/public/vendor/bootstrap/less/navbar.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/navbar.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/navbar.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/navs.less b/stage1-with-final-structure/public/vendor/bootstrap/less/navs.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/navs.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/navs.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/normalize.less b/stage1-with-final-structure/public/vendor/bootstrap/less/normalize.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/normalize.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/normalize.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/pager.less b/stage1-with-final-structure/public/vendor/bootstrap/less/pager.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/pager.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/pager.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/pagination.less b/stage1-with-final-structure/public/vendor/bootstrap/less/pagination.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/pagination.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/pagination.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/panels.less b/stage1-with-final-structure/public/vendor/bootstrap/less/panels.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/panels.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/panels.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/popovers.less b/stage1-with-final-structure/public/vendor/bootstrap/less/popovers.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/popovers.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/popovers.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/print.less b/stage1-with-final-structure/public/vendor/bootstrap/less/print.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/print.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/print.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/progress-bars.less b/stage1-with-final-structure/public/vendor/bootstrap/less/progress-bars.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/progress-bars.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/progress-bars.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/responsive-utilities.less b/stage1-with-final-structure/public/vendor/bootstrap/less/responsive-utilities.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/responsive-utilities.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/responsive-utilities.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/scaffolding.less b/stage1-with-final-structure/public/vendor/bootstrap/less/scaffolding.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/scaffolding.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/scaffolding.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/tables.less b/stage1-with-final-structure/public/vendor/bootstrap/less/tables.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/tables.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/tables.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/theme.less b/stage1-with-final-structure/public/vendor/bootstrap/less/theme.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/theme.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/theme.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/thumbnails.less b/stage1-with-final-structure/public/vendor/bootstrap/less/thumbnails.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/thumbnails.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/thumbnails.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/tooltip.less b/stage1-with-final-structure/public/vendor/bootstrap/less/tooltip.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/tooltip.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/tooltip.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/type.less b/stage1-with-final-structure/public/vendor/bootstrap/less/type.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/type.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/type.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/utilities.less b/stage1-with-final-structure/public/vendor/bootstrap/less/utilities.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/utilities.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/utilities.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/variables.less b/stage1-with-final-structure/public/vendor/bootstrap/less/variables.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/variables.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/variables.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/wells.less b/stage1-with-final-structure/public/vendor/bootstrap/less/wells.less similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/less/wells.less rename to stage1-with-final-structure/public/vendor/bootstrap/less/wells.less diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/package.json b/stage1-with-final-structure/public/vendor/bootstrap/package.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/bootstrap/package.json rename to stage1-with-final-structure/public/vendor/bootstrap/package.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/.bower.json b/stage1-with-final-structure/public/vendor/jquery/.bower.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/.bower.json rename to stage1-with-final-structure/public/vendor/jquery/.bower.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/.gitignore b/stage1-with-final-structure/public/vendor/jquery/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/.gitignore rename to stage1-with-final-structure/public/vendor/jquery/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/README.md b/stage1-with-final-structure/public/vendor/jquery/README.md similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/README.md rename to stage1-with-final-structure/public/vendor/jquery/README.md diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/bower.json b/stage1-with-final-structure/public/vendor/jquery/bower.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/bower.json rename to stage1-with-final-structure/public/vendor/jquery/bower.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/component.json b/stage1-with-final-structure/public/vendor/jquery/component.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/component.json rename to stage1-with-final-structure/public/vendor/jquery/component.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/composer.json b/stage1-with-final-structure/public/vendor/jquery/composer.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/composer.json rename to stage1-with-final-structure/public/vendor/jquery/composer.json diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.js b/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.js rename to stage1-with-final-structure/public/vendor/jquery/jquery-migrate.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.min.js b/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.min.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery-migrate.min.js rename to stage1-with-final-structure/public/vendor/jquery/jquery-migrate.min.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.js b/stage1-with-final-structure/public/vendor/jquery/jquery.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.js rename to stage1-with-final-structure/public/vendor/jquery/jquery.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.min.js b/stage1-with-final-structure/public/vendor/jquery/jquery.min.js similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.min.js rename to stage1-with-final-structure/public/vendor/jquery/jquery.min.js diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.min.map b/stage1-with-final-structure/public/vendor/jquery/jquery.min.map similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/jquery.min.map rename to stage1-with-final-structure/public/vendor/jquery/jquery.min.map diff --git a/camp1-booklog/stage1-with-final-structure/public/vendor/jquery/package.json b/stage1-with-final-structure/public/vendor/jquery/package.json similarity index 100% rename from camp1-booklog/stage1-with-final-structure/public/vendor/jquery/package.json rename to stage1-with-final-structure/public/vendor/jquery/package.json diff --git a/camp1-booklog/stage1-with-final-structure/sass/.gitignore b/stage1-with-final-structure/sass/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/sass/.gitignore rename to stage1-with-final-structure/sass/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/schema/.gitignore b/stage1-with-final-structure/schema/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/schema/.gitignore rename to stage1-with-final-structure/schema/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/scripts/.gitignore b/stage1-with-final-structure/scripts/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/scripts/.gitignore rename to stage1-with-final-structure/scripts/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/utilities/.gitignore b/stage1-with-final-structure/utilities/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/utilities/.gitignore rename to stage1-with-final-structure/utilities/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/views/.gitignore b/stage1-with-final-structure/views/.gitignore similarity index 100% rename from camp1-booklog/stage1-with-final-structure/views/.gitignore rename to stage1-with-final-structure/views/.gitignore diff --git a/camp1-booklog/stage1-with-final-structure/views/contact.jade b/stage1-with-final-structure/views/contact.jade similarity index 100% rename from camp1-booklog/stage1-with-final-structure/views/contact.jade rename to stage1-with-final-structure/views/contact.jade diff --git a/camp1-booklog/stage1-with-final-structure/views/index.jade b/stage1-with-final-structure/views/index.jade similarity index 100% rename from camp1-booklog/stage1-with-final-structure/views/index.jade rename to stage1-with-final-structure/views/index.jade diff --git a/camp1-booklog/stage1-with-final-structure/views/layout.jade b/stage1-with-final-structure/views/layout.jade similarity index 100% rename from camp1-booklog/stage1-with-final-structure/views/layout.jade rename to stage1-with-final-structure/views/layout.jade diff --git a/camp1-booklog/stage1/contact.html b/stage1/contact.html similarity index 100% rename from camp1-booklog/stage1/contact.html rename to stage1/contact.html diff --git a/camp1-booklog/stage1/css/style.css b/stage1/css/style.css similarity index 100% rename from camp1-booklog/stage1/css/style.css rename to stage1/css/style.css diff --git a/camp1-booklog/stage1/css/wiki.css b/stage1/css/wiki.css similarity index 100% rename from camp1-booklog/stage1/css/wiki.css rename to stage1/css/wiki.css diff --git a/camp1-booklog/stage1/index.html b/stage1/index.html similarity index 100% rename from camp1-booklog/stage1/index.html rename to stage1/index.html diff --git a/camp1-booklog/stage1/init.sh b/stage1/init.sh old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/init.sh rename to stage1/init.sh diff --git a/camp1-booklog/stage1/jade1/contact.jade b/stage1/jade1/contact.jade similarity index 100% rename from camp1-booklog/stage1/jade1/contact.jade rename to stage1/jade1/contact.jade diff --git a/camp1-booklog/stage1/jade1/index.jade b/stage1/jade1/index.jade similarity index 100% rename from camp1-booklog/stage1/jade1/index.jade rename to stage1/jade1/index.jade diff --git a/camp1-booklog/stage1/jade2/contact.jade b/stage1/jade2/contact.jade similarity index 100% rename from camp1-booklog/stage1/jade2/contact.jade rename to stage1/jade2/contact.jade diff --git a/camp1-booklog/stage1/jade2/index.jade b/stage1/jade2/index.jade similarity index 100% rename from camp1-booklog/stage1/jade2/index.jade rename to stage1/jade2/index.jade diff --git a/camp1-booklog/stage1/jade2/layout.jade b/stage1/jade2/layout.jade similarity index 100% rename from camp1-booklog/stage1/jade2/layout.jade rename to stage1/jade2/layout.jade diff --git a/camp1-booklog/stage1/jade3/contact.jade b/stage1/jade3/contact.jade similarity index 100% rename from camp1-booklog/stage1/jade3/contact.jade rename to stage1/jade3/contact.jade diff --git a/camp1-booklog/stage1/jade3/index.jade b/stage1/jade3/index.jade similarity index 100% rename from camp1-booklog/stage1/jade3/index.jade rename to stage1/jade3/index.jade diff --git a/camp1-booklog/stage1/jade3/layout.jade b/stage1/jade3/layout.jade similarity index 100% rename from camp1-booklog/stage1/jade3/layout.jade rename to stage1/jade3/layout.jade diff --git a/camp1-booklog/stage1/js/main.js b/stage1/js/main.js similarity index 100% rename from camp1-booklog/stage1/js/main.js rename to stage1/js/main.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/.bower.json b/stage1/vendor/bootstrap/.bower.json similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/.bower.json rename to stage1/vendor/bootstrap/.bower.json diff --git a/camp1-booklog/stage1/vendor/bootstrap/CNAME b/stage1/vendor/bootstrap/CNAME similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/CNAME rename to stage1/vendor/bootstrap/CNAME diff --git a/camp1-booklog/stage1/vendor/bootstrap/CONTRIBUTING.md b/stage1/vendor/bootstrap/CONTRIBUTING.md similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/CONTRIBUTING.md rename to stage1/vendor/bootstrap/CONTRIBUTING.md diff --git a/camp1-booklog/stage1/vendor/bootstrap/Gruntfile.js b/stage1/vendor/bootstrap/Gruntfile.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/Gruntfile.js rename to stage1/vendor/bootstrap/Gruntfile.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/LICENSE b/stage1/vendor/bootstrap/LICENSE similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/LICENSE rename to stage1/vendor/bootstrap/LICENSE diff --git a/camp1-booklog/stage1/vendor/bootstrap/README.md b/stage1/vendor/bootstrap/README.md similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/README.md rename to stage1/vendor/bootstrap/README.md diff --git a/camp1-booklog/stage1/vendor/bootstrap/_config.yml b/stage1/vendor/bootstrap/_config.yml similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_config.yml rename to stage1/vendor/bootstrap/_config.yml diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/ads.html b/stage1/vendor/bootstrap/_includes/ads.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/ads.html rename to stage1/vendor/bootstrap/_includes/ads.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/footer.html b/stage1/vendor/bootstrap/_includes/footer.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/footer.html rename to stage1/vendor/bootstrap/_includes/footer.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/header.html b/stage1/vendor/bootstrap/_includes/header.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/header.html rename to stage1/vendor/bootstrap/_includes/header.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-components.html b/stage1/vendor/bootstrap/_includes/nav-components.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-components.html rename to stage1/vendor/bootstrap/_includes/nav-components.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-css.html b/stage1/vendor/bootstrap/_includes/nav-css.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-css.html rename to stage1/vendor/bootstrap/_includes/nav-css.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-customize.html b/stage1/vendor/bootstrap/_includes/nav-customize.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-customize.html rename to stage1/vendor/bootstrap/_includes/nav-customize.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-getting-started.html b/stage1/vendor/bootstrap/_includes/nav-getting-started.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-getting-started.html rename to stage1/vendor/bootstrap/_includes/nav-getting-started.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-javascript.html b/stage1/vendor/bootstrap/_includes/nav-javascript.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-javascript.html rename to stage1/vendor/bootstrap/_includes/nav-javascript.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/nav-main.html b/stage1/vendor/bootstrap/_includes/nav-main.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/nav-main.html rename to stage1/vendor/bootstrap/_includes/nav-main.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/old-bs-docs.html b/stage1/vendor/bootstrap/_includes/old-bs-docs.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/old-bs-docs.html rename to stage1/vendor/bootstrap/_includes/old-bs-docs.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_includes/social-buttons.html b/stage1/vendor/bootstrap/_includes/social-buttons.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_includes/social-buttons.html rename to stage1/vendor/bootstrap/_includes/social-buttons.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_layouts/default.html b/stage1/vendor/bootstrap/_layouts/default.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_layouts/default.html rename to stage1/vendor/bootstrap/_layouts/default.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/_layouts/home.html b/stage1/vendor/bootstrap/_layouts/home.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/_layouts/home.html rename to stage1/vendor/bootstrap/_layouts/home.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/css/docs.css b/stage1/vendor/bootstrap/assets/css/docs.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/css/docs.css rename to stage1/vendor/bootstrap/assets/css/docs.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/css/pygments-manni.css b/stage1/vendor/bootstrap/assets/css/pygments-manni.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/css/pygments-manni.css rename to stage1/vendor/bootstrap/assets/css/pygments-manni.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png b/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png rename to stage1/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png b/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png rename to stage1/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png b/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png rename to stage1/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png b/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png rename to stage1/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/ico/favicon.png b/stage1/vendor/bootstrap/assets/ico/favicon.png similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/ico/favicon.png rename to stage1/vendor/bootstrap/assets/ico/favicon.png diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/application.js b/stage1/vendor/bootstrap/assets/js/application.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/application.js rename to stage1/vendor/bootstrap/assets/js/application.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/customizer.js b/stage1/vendor/bootstrap/assets/js/customizer.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/customizer.js rename to stage1/vendor/bootstrap/assets/js/customizer.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/filesaver.js b/stage1/vendor/bootstrap/assets/js/filesaver.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/filesaver.js rename to stage1/vendor/bootstrap/assets/js/filesaver.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/holder.js b/stage1/vendor/bootstrap/assets/js/holder.js old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/holder.js rename to stage1/vendor/bootstrap/assets/js/holder.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/html5shiv.js b/stage1/vendor/bootstrap/assets/js/html5shiv.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/html5shiv.js rename to stage1/vendor/bootstrap/assets/js/html5shiv.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/jquery.js b/stage1/vendor/bootstrap/assets/js/jquery.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/jquery.js rename to stage1/vendor/bootstrap/assets/js/jquery.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/jszip.js b/stage1/vendor/bootstrap/assets/js/jszip.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/jszip.js rename to stage1/vendor/bootstrap/assets/js/jszip.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/less.js b/stage1/vendor/bootstrap/assets/js/less.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/less.js rename to stage1/vendor/bootstrap/assets/js/less.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/raw-files.js b/stage1/vendor/bootstrap/assets/js/raw-files.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/raw-files.js rename to stage1/vendor/bootstrap/assets/js/raw-files.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/respond.min.js b/stage1/vendor/bootstrap/assets/js/respond.min.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/respond.min.js rename to stage1/vendor/bootstrap/assets/js/respond.min.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/assets/js/uglify.js b/stage1/vendor/bootstrap/assets/js/uglify.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/assets/js/uglify.js rename to stage1/vendor/bootstrap/assets/js/uglify.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/bower.json b/stage1/vendor/bootstrap/bower.json similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/bower.json rename to stage1/vendor/bootstrap/bower.json diff --git a/camp1-booklog/stage1/vendor/bootstrap/browserstack.json b/stage1/vendor/bootstrap/browserstack.json similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/browserstack.json rename to stage1/vendor/bootstrap/browserstack.json diff --git a/camp1-booklog/stage1/vendor/bootstrap/components.html b/stage1/vendor/bootstrap/components.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/components.html rename to stage1/vendor/bootstrap/components.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/composer.json b/stage1/vendor/bootstrap/composer.json similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/composer.json rename to stage1/vendor/bootstrap/composer.json diff --git a/camp1-booklog/stage1/vendor/bootstrap/css.html b/stage1/vendor/bootstrap/css.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/css.html rename to stage1/vendor/bootstrap/css.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/customize.html b/stage1/vendor/bootstrap/customize.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/customize.html rename to stage1/vendor/bootstrap/customize.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap-theme.css b/stage1/vendor/bootstrap/dist/css/bootstrap-theme.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap-theme.css rename to stage1/vendor/bootstrap/dist/css/bootstrap-theme.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap-theme.min.css b/stage1/vendor/bootstrap/dist/css/bootstrap-theme.min.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap-theme.min.css rename to stage1/vendor/bootstrap/dist/css/bootstrap-theme.min.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap.css b/stage1/vendor/bootstrap/dist/css/bootstrap.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap.css rename to stage1/vendor/bootstrap/dist/css/bootstrap.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap.min.css b/stage1/vendor/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/css/bootstrap.min.css rename to stage1/vendor/bootstrap/dist/css/bootstrap.min.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot b/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot rename to stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg b/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg rename to stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf b/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf rename to stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff b/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff rename to stage1/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/js/bootstrap.js b/stage1/vendor/bootstrap/dist/js/bootstrap.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/js/bootstrap.js rename to stage1/vendor/bootstrap/dist/js/bootstrap.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/dist/js/bootstrap.min.js b/stage1/vendor/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/dist/js/bootstrap.min.js rename to stage1/vendor/bootstrap/dist/js/bootstrap.min.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/carousel/carousel.css b/stage1/vendor/bootstrap/examples/carousel/carousel.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/carousel/carousel.css rename to stage1/vendor/bootstrap/examples/carousel/carousel.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/carousel/index.html b/stage1/vendor/bootstrap/examples/carousel/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/carousel/index.html rename to stage1/vendor/bootstrap/examples/carousel/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/grid/grid.css b/stage1/vendor/bootstrap/examples/grid/grid.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/grid/grid.css rename to stage1/vendor/bootstrap/examples/grid/grid.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/grid/index.html b/stage1/vendor/bootstrap/examples/grid/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/grid/index.html rename to stage1/vendor/bootstrap/examples/grid/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron-narrow/index.html b/stage1/vendor/bootstrap/examples/jumbotron-narrow/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron-narrow/index.html rename to stage1/vendor/bootstrap/examples/jumbotron-narrow/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css b/stage1/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css rename to stage1/vendor/bootstrap/examples/jumbotron-narrow/jumbotron-narrow.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron/index.html b/stage1/vendor/bootstrap/examples/jumbotron/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron/index.html rename to stage1/vendor/bootstrap/examples/jumbotron/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron/jumbotron.css b/stage1/vendor/bootstrap/examples/jumbotron/jumbotron.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/jumbotron/jumbotron.css rename to stage1/vendor/bootstrap/examples/jumbotron/jumbotron.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/justified-nav/index.html b/stage1/vendor/bootstrap/examples/justified-nav/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/justified-nav/index.html rename to stage1/vendor/bootstrap/examples/justified-nav/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/justified-nav/justified-nav.css b/stage1/vendor/bootstrap/examples/justified-nav/justified-nav.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/justified-nav/justified-nav.css rename to stage1/vendor/bootstrap/examples/justified-nav/justified-nav.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar-fixed-top/index.html b/stage1/vendor/bootstrap/examples/navbar-fixed-top/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar-fixed-top/index.html rename to stage1/vendor/bootstrap/examples/navbar-fixed-top/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css b/stage1/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css rename to stage1/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar-static-top/index.html b/stage1/vendor/bootstrap/examples/navbar-static-top/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar-static-top/index.html rename to stage1/vendor/bootstrap/examples/navbar-static-top/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css b/stage1/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css rename to stage1/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar/index.html b/stage1/vendor/bootstrap/examples/navbar/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar/index.html rename to stage1/vendor/bootstrap/examples/navbar/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/navbar/navbar.css b/stage1/vendor/bootstrap/examples/navbar/navbar.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/navbar/navbar.css rename to stage1/vendor/bootstrap/examples/navbar/navbar.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/non-responsive/index.html b/stage1/vendor/bootstrap/examples/non-responsive/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/non-responsive/index.html rename to stage1/vendor/bootstrap/examples/non-responsive/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/non-responsive/non-responsive.css b/stage1/vendor/bootstrap/examples/non-responsive/non-responsive.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/non-responsive/non-responsive.css rename to stage1/vendor/bootstrap/examples/non-responsive/non-responsive.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/index.html b/stage1/vendor/bootstrap/examples/offcanvas/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/index.html rename to stage1/vendor/bootstrap/examples/offcanvas/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.css b/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.css rename to stage1/vendor/bootstrap/examples/offcanvas/offcanvas.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.js b/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/offcanvas/offcanvas.js rename to stage1/vendor/bootstrap/examples/offcanvas/offcanvas.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/carousel.jpg b/stage1/vendor/bootstrap/examples/screenshots/carousel.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/carousel.jpg rename to stage1/vendor/bootstrap/examples/screenshots/carousel.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/grid.jpg b/stage1/vendor/bootstrap/examples/screenshots/grid.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/grid.jpg rename to stage1/vendor/bootstrap/examples/screenshots/grid.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg b/stage1/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg rename to stage1/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/jumbotron.jpg b/stage1/vendor/bootstrap/examples/screenshots/jumbotron.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/jumbotron.jpg rename to stage1/vendor/bootstrap/examples/screenshots/jumbotron.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/justified-nav.jpg b/stage1/vendor/bootstrap/examples/screenshots/justified-nav.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/justified-nav.jpg rename to stage1/vendor/bootstrap/examples/screenshots/justified-nav.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg b/stage1/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg rename to stage1/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar-static.jpg b/stage1/vendor/bootstrap/examples/screenshots/navbar-static.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar-static.jpg rename to stage1/vendor/bootstrap/examples/screenshots/navbar-static.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar.jpg b/stage1/vendor/bootstrap/examples/screenshots/navbar.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/navbar.jpg rename to stage1/vendor/bootstrap/examples/screenshots/navbar.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/non-responsive.jpg b/stage1/vendor/bootstrap/examples/screenshots/non-responsive.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/non-responsive.jpg rename to stage1/vendor/bootstrap/examples/screenshots/non-responsive.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/offcanvas.jpg b/stage1/vendor/bootstrap/examples/screenshots/offcanvas.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/offcanvas.jpg rename to stage1/vendor/bootstrap/examples/screenshots/offcanvas.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sign-in.jpg b/stage1/vendor/bootstrap/examples/screenshots/sign-in.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sign-in.jpg rename to stage1/vendor/bootstrap/examples/screenshots/sign-in.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/starter-template.jpg b/stage1/vendor/bootstrap/examples/screenshots/starter-template.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/starter-template.jpg rename to stage1/vendor/bootstrap/examples/screenshots/starter-template.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg b/stage1/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg rename to stage1/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sticky-footer.jpg b/stage1/vendor/bootstrap/examples/screenshots/sticky-footer.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/sticky-footer.jpg rename to stage1/vendor/bootstrap/examples/screenshots/sticky-footer.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/theme.jpg b/stage1/vendor/bootstrap/examples/screenshots/theme.jpg similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/screenshots/theme.jpg rename to stage1/vendor/bootstrap/examples/screenshots/theme.jpg diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/signin/index.html b/stage1/vendor/bootstrap/examples/signin/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/signin/index.html rename to stage1/vendor/bootstrap/examples/signin/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/signin/signin.css b/stage1/vendor/bootstrap/examples/signin/signin.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/signin/signin.css rename to stage1/vendor/bootstrap/examples/signin/signin.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/starter-template/index.html b/stage1/vendor/bootstrap/examples/starter-template/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/starter-template/index.html rename to stage1/vendor/bootstrap/examples/starter-template/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/starter-template/starter-template.css b/stage1/vendor/bootstrap/examples/starter-template/starter-template.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/starter-template/starter-template.css rename to stage1/vendor/bootstrap/examples/starter-template/starter-template.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer-navbar/index.html b/stage1/vendor/bootstrap/examples/sticky-footer-navbar/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer-navbar/index.html rename to stage1/vendor/bootstrap/examples/sticky-footer-navbar/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css b/stage1/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css rename to stage1/vendor/bootstrap/examples/sticky-footer-navbar/sticky-footer-navbar.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer/index.html b/stage1/vendor/bootstrap/examples/sticky-footer/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer/index.html rename to stage1/vendor/bootstrap/examples/sticky-footer/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer/sticky-footer.css b/stage1/vendor/bootstrap/examples/sticky-footer/sticky-footer.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/sticky-footer/sticky-footer.css rename to stage1/vendor/bootstrap/examples/sticky-footer/sticky-footer.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/theme/index.html b/stage1/vendor/bootstrap/examples/theme/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/theme/index.html rename to stage1/vendor/bootstrap/examples/theme/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/examples/theme/theme.css b/stage1/vendor/bootstrap/examples/theme/theme.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/examples/theme/theme.css rename to stage1/vendor/bootstrap/examples/theme/theme.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot b/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot rename to stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot diff --git a/camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg b/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg rename to stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg diff --git a/camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf b/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf rename to stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf diff --git a/camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff b/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff rename to stage1/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff diff --git a/camp1-booklog/stage1/vendor/bootstrap/getting-started.html b/stage1/vendor/bootstrap/getting-started.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/getting-started.html rename to stage1/vendor/bootstrap/getting-started.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/index.html b/stage1/vendor/bootstrap/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/index.html rename to stage1/vendor/bootstrap/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/javascript.html b/stage1/vendor/bootstrap/javascript.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/javascript.html rename to stage1/vendor/bootstrap/javascript.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/affix.js b/stage1/vendor/bootstrap/js/affix.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/affix.js rename to stage1/vendor/bootstrap/js/affix.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/alert.js b/stage1/vendor/bootstrap/js/alert.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/alert.js rename to stage1/vendor/bootstrap/js/alert.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/button.js b/stage1/vendor/bootstrap/js/button.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/button.js rename to stage1/vendor/bootstrap/js/button.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/carousel.js b/stage1/vendor/bootstrap/js/carousel.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/carousel.js rename to stage1/vendor/bootstrap/js/carousel.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/collapse.js b/stage1/vendor/bootstrap/js/collapse.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/collapse.js rename to stage1/vendor/bootstrap/js/collapse.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/dropdown.js b/stage1/vendor/bootstrap/js/dropdown.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/dropdown.js rename to stage1/vendor/bootstrap/js/dropdown.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/modal.js b/stage1/vendor/bootstrap/js/modal.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/modal.js rename to stage1/vendor/bootstrap/js/modal.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/popover.js b/stage1/vendor/bootstrap/js/popover.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/popover.js rename to stage1/vendor/bootstrap/js/popover.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/scrollspy.js b/stage1/vendor/bootstrap/js/scrollspy.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/scrollspy.js rename to stage1/vendor/bootstrap/js/scrollspy.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tab.js b/stage1/vendor/bootstrap/js/tab.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tab.js rename to stage1/vendor/bootstrap/js/tab.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/index.html b/stage1/vendor/bootstrap/js/tests/index.html similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/index.html rename to stage1/vendor/bootstrap/js/tests/index.html diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/phantom.js b/stage1/vendor/bootstrap/js/tests/phantom.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/phantom.js rename to stage1/vendor/bootstrap/js/tests/phantom.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/server.js b/stage1/vendor/bootstrap/js/tests/server.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/server.js rename to stage1/vendor/bootstrap/js/tests/server.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/affix.js b/stage1/vendor/bootstrap/js/tests/unit/affix.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/affix.js rename to stage1/vendor/bootstrap/js/tests/unit/affix.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/alert.js b/stage1/vendor/bootstrap/js/tests/unit/alert.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/alert.js rename to stage1/vendor/bootstrap/js/tests/unit/alert.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/button.js b/stage1/vendor/bootstrap/js/tests/unit/button.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/button.js rename to stage1/vendor/bootstrap/js/tests/unit/button.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/carousel.js b/stage1/vendor/bootstrap/js/tests/unit/carousel.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/carousel.js rename to stage1/vendor/bootstrap/js/tests/unit/carousel.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/collapse.js b/stage1/vendor/bootstrap/js/tests/unit/collapse.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/collapse.js rename to stage1/vendor/bootstrap/js/tests/unit/collapse.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/dropdown.js b/stage1/vendor/bootstrap/js/tests/unit/dropdown.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/dropdown.js rename to stage1/vendor/bootstrap/js/tests/unit/dropdown.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/modal.js b/stage1/vendor/bootstrap/js/tests/unit/modal.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/modal.js rename to stage1/vendor/bootstrap/js/tests/unit/modal.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/phantom.js b/stage1/vendor/bootstrap/js/tests/unit/phantom.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/phantom.js rename to stage1/vendor/bootstrap/js/tests/unit/phantom.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/popover.js b/stage1/vendor/bootstrap/js/tests/unit/popover.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/popover.js rename to stage1/vendor/bootstrap/js/tests/unit/popover.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/scrollspy.js b/stage1/vendor/bootstrap/js/tests/unit/scrollspy.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/scrollspy.js rename to stage1/vendor/bootstrap/js/tests/unit/scrollspy.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/tab.js b/stage1/vendor/bootstrap/js/tests/unit/tab.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/tab.js rename to stage1/vendor/bootstrap/js/tests/unit/tab.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/tooltip.js b/stage1/vendor/bootstrap/js/tests/unit/tooltip.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/tooltip.js rename to stage1/vendor/bootstrap/js/tests/unit/tooltip.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/transition.js b/stage1/vendor/bootstrap/js/tests/unit/transition.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/unit/transition.js rename to stage1/vendor/bootstrap/js/tests/unit/transition.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/jquery.js b/stage1/vendor/bootstrap/js/tests/vendor/jquery.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/jquery.js rename to stage1/vendor/bootstrap/js/tests/vendor/jquery.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/qunit.css b/stage1/vendor/bootstrap/js/tests/vendor/qunit.css similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/qunit.css rename to stage1/vendor/bootstrap/js/tests/vendor/qunit.css diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/qunit.js b/stage1/vendor/bootstrap/js/tests/vendor/qunit.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tests/vendor/qunit.js rename to stage1/vendor/bootstrap/js/tests/vendor/qunit.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/tooltip.js b/stage1/vendor/bootstrap/js/tooltip.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/tooltip.js rename to stage1/vendor/bootstrap/js/tooltip.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/js/transition.js b/stage1/vendor/bootstrap/js/transition.js similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/js/transition.js rename to stage1/vendor/bootstrap/js/transition.js diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/alerts.less b/stage1/vendor/bootstrap/less/alerts.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/alerts.less rename to stage1/vendor/bootstrap/less/alerts.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/badges.less b/stage1/vendor/bootstrap/less/badges.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/badges.less rename to stage1/vendor/bootstrap/less/badges.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/bootstrap.less b/stage1/vendor/bootstrap/less/bootstrap.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/bootstrap.less rename to stage1/vendor/bootstrap/less/bootstrap.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/breadcrumbs.less b/stage1/vendor/bootstrap/less/breadcrumbs.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/breadcrumbs.less rename to stage1/vendor/bootstrap/less/breadcrumbs.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/button-groups.less b/stage1/vendor/bootstrap/less/button-groups.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/button-groups.less rename to stage1/vendor/bootstrap/less/button-groups.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/buttons.less b/stage1/vendor/bootstrap/less/buttons.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/buttons.less rename to stage1/vendor/bootstrap/less/buttons.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/carousel.less b/stage1/vendor/bootstrap/less/carousel.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/carousel.less rename to stage1/vendor/bootstrap/less/carousel.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/close.less b/stage1/vendor/bootstrap/less/close.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/close.less rename to stage1/vendor/bootstrap/less/close.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/code.less b/stage1/vendor/bootstrap/less/code.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/code.less rename to stage1/vendor/bootstrap/less/code.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/component-animations.less b/stage1/vendor/bootstrap/less/component-animations.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/component-animations.less rename to stage1/vendor/bootstrap/less/component-animations.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/dropdowns.less b/stage1/vendor/bootstrap/less/dropdowns.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/dropdowns.less rename to stage1/vendor/bootstrap/less/dropdowns.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/forms.less b/stage1/vendor/bootstrap/less/forms.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/forms.less rename to stage1/vendor/bootstrap/less/forms.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/glyphicons.less b/stage1/vendor/bootstrap/less/glyphicons.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/glyphicons.less rename to stage1/vendor/bootstrap/less/glyphicons.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/grid.less b/stage1/vendor/bootstrap/less/grid.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/grid.less rename to stage1/vendor/bootstrap/less/grid.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/input-groups.less b/stage1/vendor/bootstrap/less/input-groups.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/input-groups.less rename to stage1/vendor/bootstrap/less/input-groups.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/jumbotron.less b/stage1/vendor/bootstrap/less/jumbotron.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/jumbotron.less rename to stage1/vendor/bootstrap/less/jumbotron.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/labels.less b/stage1/vendor/bootstrap/less/labels.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/labels.less rename to stage1/vendor/bootstrap/less/labels.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/list-group.less b/stage1/vendor/bootstrap/less/list-group.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/list-group.less rename to stage1/vendor/bootstrap/less/list-group.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/media.less b/stage1/vendor/bootstrap/less/media.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/media.less rename to stage1/vendor/bootstrap/less/media.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/mixins.less b/stage1/vendor/bootstrap/less/mixins.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/mixins.less rename to stage1/vendor/bootstrap/less/mixins.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/modals.less b/stage1/vendor/bootstrap/less/modals.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/modals.less rename to stage1/vendor/bootstrap/less/modals.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/navbar.less b/stage1/vendor/bootstrap/less/navbar.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/navbar.less rename to stage1/vendor/bootstrap/less/navbar.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/navs.less b/stage1/vendor/bootstrap/less/navs.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/navs.less rename to stage1/vendor/bootstrap/less/navs.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/normalize.less b/stage1/vendor/bootstrap/less/normalize.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/normalize.less rename to stage1/vendor/bootstrap/less/normalize.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/pager.less b/stage1/vendor/bootstrap/less/pager.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/pager.less rename to stage1/vendor/bootstrap/less/pager.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/pagination.less b/stage1/vendor/bootstrap/less/pagination.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/pagination.less rename to stage1/vendor/bootstrap/less/pagination.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/panels.less b/stage1/vendor/bootstrap/less/panels.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/panels.less rename to stage1/vendor/bootstrap/less/panels.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/popovers.less b/stage1/vendor/bootstrap/less/popovers.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/popovers.less rename to stage1/vendor/bootstrap/less/popovers.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/print.less b/stage1/vendor/bootstrap/less/print.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/print.less rename to stage1/vendor/bootstrap/less/print.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/progress-bars.less b/stage1/vendor/bootstrap/less/progress-bars.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/progress-bars.less rename to stage1/vendor/bootstrap/less/progress-bars.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/responsive-utilities.less b/stage1/vendor/bootstrap/less/responsive-utilities.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/responsive-utilities.less rename to stage1/vendor/bootstrap/less/responsive-utilities.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/scaffolding.less b/stage1/vendor/bootstrap/less/scaffolding.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/scaffolding.less rename to stage1/vendor/bootstrap/less/scaffolding.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/tables.less b/stage1/vendor/bootstrap/less/tables.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/tables.less rename to stage1/vendor/bootstrap/less/tables.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/theme.less b/stage1/vendor/bootstrap/less/theme.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/theme.less rename to stage1/vendor/bootstrap/less/theme.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/thumbnails.less b/stage1/vendor/bootstrap/less/thumbnails.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/thumbnails.less rename to stage1/vendor/bootstrap/less/thumbnails.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/tooltip.less b/stage1/vendor/bootstrap/less/tooltip.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/tooltip.less rename to stage1/vendor/bootstrap/less/tooltip.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/type.less b/stage1/vendor/bootstrap/less/type.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/type.less rename to stage1/vendor/bootstrap/less/type.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/utilities.less b/stage1/vendor/bootstrap/less/utilities.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/utilities.less rename to stage1/vendor/bootstrap/less/utilities.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/variables.less b/stage1/vendor/bootstrap/less/variables.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/variables.less rename to stage1/vendor/bootstrap/less/variables.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/less/wells.less b/stage1/vendor/bootstrap/less/wells.less similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/less/wells.less rename to stage1/vendor/bootstrap/less/wells.less diff --git a/camp1-booklog/stage1/vendor/bootstrap/package.json b/stage1/vendor/bootstrap/package.json similarity index 100% rename from camp1-booklog/stage1/vendor/bootstrap/package.json rename to stage1/vendor/bootstrap/package.json diff --git a/camp1-booklog/stage1/vendor/jquery/.bower.json b/stage1/vendor/jquery/.bower.json similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/.bower.json rename to stage1/vendor/jquery/.bower.json diff --git a/camp1-booklog/stage1/vendor/jquery/.gitignore b/stage1/vendor/jquery/.gitignore similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/.gitignore rename to stage1/vendor/jquery/.gitignore diff --git a/camp1-booklog/stage1/vendor/jquery/README.md b/stage1/vendor/jquery/README.md similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/README.md rename to stage1/vendor/jquery/README.md diff --git a/camp1-booklog/stage1/vendor/jquery/bower.json b/stage1/vendor/jquery/bower.json similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/bower.json rename to stage1/vendor/jquery/bower.json diff --git a/camp1-booklog/stage1/vendor/jquery/component.json b/stage1/vendor/jquery/component.json similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/component.json rename to stage1/vendor/jquery/component.json diff --git a/camp1-booklog/stage1/vendor/jquery/composer.json b/stage1/vendor/jquery/composer.json similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/composer.json rename to stage1/vendor/jquery/composer.json diff --git a/camp1-booklog/stage1/vendor/jquery/jquery-migrate.js b/stage1/vendor/jquery/jquery-migrate.js similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/jquery-migrate.js rename to stage1/vendor/jquery/jquery-migrate.js diff --git a/camp1-booklog/stage1/vendor/jquery/jquery-migrate.min.js b/stage1/vendor/jquery/jquery-migrate.min.js similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/jquery-migrate.min.js rename to stage1/vendor/jquery/jquery-migrate.min.js diff --git a/camp1-booklog/stage1/vendor/jquery/jquery.js b/stage1/vendor/jquery/jquery.js similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/jquery.js rename to stage1/vendor/jquery/jquery.js diff --git a/camp1-booklog/stage1/vendor/jquery/jquery.min.js b/stage1/vendor/jquery/jquery.min.js similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/jquery.min.js rename to stage1/vendor/jquery/jquery.min.js diff --git a/camp1-booklog/stage1/vendor/jquery/jquery.min.map b/stage1/vendor/jquery/jquery.min.map similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/jquery.min.map rename to stage1/vendor/jquery/jquery.min.map diff --git a/camp1-booklog/stage1/vendor/jquery/package.json b/stage1/vendor/jquery/package.json similarity index 100% rename from camp1-booklog/stage1/vendor/jquery/package.json rename to stage1/vendor/jquery/package.json diff --git a/camp1-booklog/stage2/.bowerrc b/stage2/.bowerrc similarity index 100% rename from camp1-booklog/stage2/.bowerrc rename to stage2/.bowerrc diff --git a/camp1-booklog/stage2/.editorconfig b/stage2/.editorconfig similarity index 100% rename from camp1-booklog/stage2/.editorconfig rename to stage2/.editorconfig diff --git a/camp1-booklog/stage2/.gitignore b/stage2/.gitignore similarity index 100% rename from camp1-booklog/stage2/.gitignore rename to stage2/.gitignore diff --git a/camp1-booklog/stage2/Gruntfile.js b/stage2/Gruntfile.js similarity index 100% rename from camp1-booklog/stage2/Gruntfile.js rename to stage2/Gruntfile.js diff --git a/camp1-booklog/stage2/LICENSE b/stage2/LICENSE similarity index 100% rename from camp1-booklog/stage2/LICENSE rename to stage2/LICENSE diff --git a/camp1-booklog/stage2/app.js b/stage2/app.js similarity index 100% rename from camp1-booklog/stage2/app.js rename to stage2/app.js diff --git a/camp1-booklog/stage2/bower.json b/stage2/bower.json similarity index 100% rename from camp1-booklog/stage2/bower.json rename to stage2/bower.json diff --git a/camp1-booklog/stage2/fixes/.gitignore b/stage2/fixes/.gitignore similarity index 100% rename from camp1-booklog/stage2/fixes/.gitignore rename to stage2/fixes/.gitignore diff --git a/camp1-booklog/stage2/package.json b/stage2/package.json similarity index 100% rename from camp1-booklog/stage2/package.json rename to stage2/package.json diff --git a/camp1-booklog/stage2/public/.gitignore b/stage2/public/.gitignore similarity index 100% rename from camp1-booklog/stage2/public/.gitignore rename to stage2/public/.gitignore diff --git a/camp1-booklog/stage2/public/css/style.css b/stage2/public/css/style.css similarity index 100% rename from camp1-booklog/stage2/public/css/style.css rename to stage2/public/css/style.css diff --git a/camp1-booklog/stage2/public/css/wiki.css b/stage2/public/css/wiki.css similarity index 100% rename from camp1-booklog/stage2/public/css/wiki.css rename to stage2/public/css/wiki.css diff --git a/camp1-booklog/stage2/public/js/main.js b/stage2/public/js/main.js similarity index 100% rename from camp1-booklog/stage2/public/js/main.js rename to stage2/public/js/main.js diff --git a/camp1-booklog/stage2/routes/index.js b/stage2/routes/index.js similarity index 100% rename from camp1-booklog/stage2/routes/index.js rename to stage2/routes/index.js diff --git a/camp1-booklog/stage2/routes/user.js b/stage2/routes/user.js similarity index 100% rename from camp1-booklog/stage2/routes/user.js rename to stage2/routes/user.js diff --git a/camp1-booklog/stage2/sass/.gitignore b/stage2/sass/.gitignore similarity index 100% rename from camp1-booklog/stage2/sass/.gitignore rename to stage2/sass/.gitignore diff --git a/camp1-booklog/stage2/schema/.gitignore b/stage2/schema/.gitignore similarity index 100% rename from camp1-booklog/stage2/schema/.gitignore rename to stage2/schema/.gitignore diff --git a/camp1-booklog/stage2/scripts/.gitignore b/stage2/scripts/.gitignore similarity index 100% rename from camp1-booklog/stage2/scripts/.gitignore rename to stage2/scripts/.gitignore diff --git a/camp1-booklog/stage2/utilities/.gitignore b/stage2/utilities/.gitignore similarity index 100% rename from camp1-booklog/stage2/utilities/.gitignore rename to stage2/utilities/.gitignore diff --git a/camp1-booklog/stage2/views/.gitignore b/stage2/views/.gitignore similarity index 100% rename from camp1-booklog/stage2/views/.gitignore rename to stage2/views/.gitignore diff --git a/camp1-booklog/stage2/views/contact.jade b/stage2/views/contact.jade similarity index 100% rename from camp1-booklog/stage2/views/contact.jade rename to stage2/views/contact.jade diff --git a/camp1-booklog/stage2/views/index.jade b/stage2/views/index.jade similarity index 100% rename from camp1-booklog/stage2/views/index.jade rename to stage2/views/index.jade diff --git a/camp1-booklog/stage2/views/layout.jade b/stage2/views/layout.jade similarity index 100% rename from camp1-booklog/stage2/views/layout.jade rename to stage2/views/layout.jade diff --git a/camp1-booklog/stage3/.bowerrc b/stage3/.bowerrc similarity index 100% rename from camp1-booklog/stage3/.bowerrc rename to stage3/.bowerrc diff --git a/camp1-booklog/stage3/.editorconfig b/stage3/.editorconfig similarity index 100% rename from camp1-booklog/stage3/.editorconfig rename to stage3/.editorconfig diff --git a/camp1-booklog/stage3/.gitignore b/stage3/.gitignore similarity index 100% rename from camp1-booklog/stage3/.gitignore rename to stage3/.gitignore diff --git a/camp1-booklog/stage3/Gruntfile.js b/stage3/Gruntfile.js similarity index 100% rename from camp1-booklog/stage3/Gruntfile.js rename to stage3/Gruntfile.js diff --git a/camp1-booklog/stage3/LICENSE b/stage3/LICENSE similarity index 100% rename from camp1-booklog/stage3/LICENSE rename to stage3/LICENSE diff --git a/camp1-booklog/stage3/app.js b/stage3/app.js similarity index 100% rename from camp1-booklog/stage3/app.js rename to stage3/app.js diff --git a/camp1-booklog/stage3/bower.json b/stage3/bower.json similarity index 100% rename from camp1-booklog/stage3/bower.json rename to stage3/bower.json diff --git a/camp1-booklog/stage3/fixes/.gitignore b/stage3/fixes/.gitignore similarity index 100% rename from camp1-booklog/stage3/fixes/.gitignore rename to stage3/fixes/.gitignore diff --git a/camp1-booklog/stage3/package.json b/stage3/package.json similarity index 100% rename from camp1-booklog/stage3/package.json rename to stage3/package.json diff --git a/camp1-booklog/stage3/public/.gitignore b/stage3/public/.gitignore similarity index 100% rename from camp1-booklog/stage3/public/.gitignore rename to stage3/public/.gitignore diff --git a/camp1-booklog/stage3/public/css/style.css b/stage3/public/css/style.css similarity index 100% rename from camp1-booklog/stage3/public/css/style.css rename to stage3/public/css/style.css diff --git a/camp1-booklog/stage3/public/css/wiki.css b/stage3/public/css/wiki.css similarity index 100% rename from camp1-booklog/stage3/public/css/wiki.css rename to stage3/public/css/wiki.css diff --git a/camp1-booklog/stage3/public/js/main.js b/stage3/public/js/main.js similarity index 100% rename from camp1-booklog/stage3/public/js/main.js rename to stage3/public/js/main.js diff --git a/camp1-booklog/stage3/public/js/main.min.js b/stage3/public/js/main.min.js similarity index 100% rename from camp1-booklog/stage3/public/js/main.min.js rename to stage3/public/js/main.min.js diff --git a/camp1-booklog/stage3/routes/index.js b/stage3/routes/index.js similarity index 100% rename from camp1-booklog/stage3/routes/index.js rename to stage3/routes/index.js diff --git a/camp1-booklog/stage3/routes/user.js b/stage3/routes/user.js similarity index 100% rename from camp1-booklog/stage3/routes/user.js rename to stage3/routes/user.js diff --git a/camp1-booklog/stage3/sass/.gitignore b/stage3/sass/.gitignore similarity index 100% rename from camp1-booklog/stage3/sass/.gitignore rename to stage3/sass/.gitignore diff --git a/camp1-booklog/stage3/sass/style.sass b/stage3/sass/style.sass similarity index 100% rename from camp1-booklog/stage3/sass/style.sass rename to stage3/sass/style.sass diff --git a/camp1-booklog/stage3/sass/wiki.sass b/stage3/sass/wiki.sass similarity index 100% rename from camp1-booklog/stage3/sass/wiki.sass rename to stage3/sass/wiki.sass diff --git a/camp1-booklog/stage3/schema/.gitignore b/stage3/schema/.gitignore similarity index 100% rename from camp1-booklog/stage3/schema/.gitignore rename to stage3/schema/.gitignore diff --git a/camp1-booklog/stage3/scripts/.gitignore b/stage3/scripts/.gitignore similarity index 100% rename from camp1-booklog/stage3/scripts/.gitignore rename to stage3/scripts/.gitignore diff --git a/camp1-booklog/stage3/utilities/.gitignore b/stage3/utilities/.gitignore similarity index 100% rename from camp1-booklog/stage3/utilities/.gitignore rename to stage3/utilities/.gitignore diff --git a/camp1-booklog/stage3/views/.gitignore b/stage3/views/.gitignore similarity index 100% rename from camp1-booklog/stage3/views/.gitignore rename to stage3/views/.gitignore diff --git a/camp1-booklog/stage3/views/contact.jade b/stage3/views/contact.jade similarity index 100% rename from camp1-booklog/stage3/views/contact.jade rename to stage3/views/contact.jade diff --git a/camp1-booklog/stage3/views/index.jade b/stage3/views/index.jade similarity index 100% rename from camp1-booklog/stage3/views/index.jade rename to stage3/views/index.jade diff --git a/camp1-booklog/stage3/views/layout.jade b/stage3/views/layout.jade similarity index 100% rename from camp1-booklog/stage3/views/layout.jade rename to stage3/views/layout.jade diff --git a/camp1-booklog/stage4/.bowerrc b/stage4/.bowerrc similarity index 100% rename from camp1-booklog/stage4/.bowerrc rename to stage4/.bowerrc diff --git a/camp1-booklog/stage4/.editorconfig b/stage4/.editorconfig similarity index 100% rename from camp1-booklog/stage4/.editorconfig rename to stage4/.editorconfig diff --git a/camp1-booklog/stage4/.gitignore b/stage4/.gitignore similarity index 100% rename from camp1-booklog/stage4/.gitignore rename to stage4/.gitignore diff --git a/camp1-booklog/stage4/Gruntfile.js b/stage4/Gruntfile.js similarity index 100% rename from camp1-booklog/stage4/Gruntfile.js rename to stage4/Gruntfile.js diff --git a/camp1-booklog/stage4/LICENSE b/stage4/LICENSE similarity index 100% rename from camp1-booklog/stage4/LICENSE rename to stage4/LICENSE diff --git a/camp1-booklog/stage4/app.js b/stage4/app.js similarity index 100% rename from camp1-booklog/stage4/app.js rename to stage4/app.js diff --git a/camp1-booklog/stage4/bower.json b/stage4/bower.json similarity index 100% rename from camp1-booklog/stage4/bower.json rename to stage4/bower.json diff --git a/camp1-booklog/stage4/fixes/.gitignore b/stage4/fixes/.gitignore similarity index 100% rename from camp1-booklog/stage4/fixes/.gitignore rename to stage4/fixes/.gitignore diff --git a/camp1-booklog/stage4/models.js b/stage4/models.js old mode 100755 new mode 100644 similarity index 100% rename from camp1-booklog/stage4/models.js rename to stage4/models.js diff --git a/camp1-booklog/stage4/package.json b/stage4/package.json similarity index 100% rename from camp1-booklog/stage4/package.json rename to stage4/package.json diff --git a/camp1-booklog/stage4/public/.gitignore b/stage4/public/.gitignore similarity index 100% rename from camp1-booklog/stage4/public/.gitignore rename to stage4/public/.gitignore diff --git a/camp1-booklog/stage4/public/css/style.css b/stage4/public/css/style.css similarity index 100% rename from camp1-booklog/stage4/public/css/style.css rename to stage4/public/css/style.css diff --git a/camp1-booklog/stage4/public/css/wiki.css b/stage4/public/css/wiki.css similarity index 100% rename from camp1-booklog/stage4/public/css/wiki.css rename to stage4/public/css/wiki.css diff --git a/camp1-booklog/stage4/public/js/index.js b/stage4/public/js/index.js similarity index 100% rename from camp1-booklog/stage4/public/js/index.js rename to stage4/public/js/index.js diff --git a/camp1-booklog/stage4/public/js/main.js b/stage4/public/js/main.js similarity index 100% rename from camp1-booklog/stage4/public/js/main.js rename to stage4/public/js/main.js diff --git a/camp1-booklog/stage4/public/js/main.min.js b/stage4/public/js/main.min.js similarity index 100% rename from camp1-booklog/stage4/public/js/main.min.js rename to stage4/public/js/main.min.js diff --git a/camp1-booklog/stage4/routes/index.js b/stage4/routes/index.js similarity index 100% rename from camp1-booklog/stage4/routes/index.js rename to stage4/routes/index.js diff --git a/camp1-booklog/stage4/routes/user.js b/stage4/routes/user.js similarity index 100% rename from camp1-booklog/stage4/routes/user.js rename to stage4/routes/user.js diff --git a/camp1-booklog/stage4/sass/.gitignore b/stage4/sass/.gitignore similarity index 100% rename from camp1-booklog/stage4/sass/.gitignore rename to stage4/sass/.gitignore diff --git a/camp1-booklog/stage4/sass/style.sass b/stage4/sass/style.sass similarity index 100% rename from camp1-booklog/stage4/sass/style.sass rename to stage4/sass/style.sass diff --git a/camp1-booklog/stage4/sass/wiki.sass b/stage4/sass/wiki.sass similarity index 100% rename from camp1-booklog/stage4/sass/wiki.sass rename to stage4/sass/wiki.sass diff --git a/camp1-booklog/stage4/schema/.gitignore b/stage4/schema/.gitignore similarity index 100% rename from camp1-booklog/stage4/schema/.gitignore rename to stage4/schema/.gitignore diff --git a/camp1-booklog/stage4/schema/BookIndex.js b/stage4/schema/BookIndex.js similarity index 100% rename from camp1-booklog/stage4/schema/BookIndex.js rename to stage4/schema/BookIndex.js diff --git a/camp1-booklog/stage4/scripts/.gitignore b/stage4/scripts/.gitignore similarity index 100% rename from camp1-booklog/stage4/scripts/.gitignore rename to stage4/scripts/.gitignore diff --git a/camp1-booklog/stage4/utilities/.gitignore b/stage4/utilities/.gitignore similarity index 100% rename from camp1-booklog/stage4/utilities/.gitignore rename to stage4/utilities/.gitignore diff --git a/camp1-booklog/stage4/views/.gitignore b/stage4/views/.gitignore similarity index 100% rename from camp1-booklog/stage4/views/.gitignore rename to stage4/views/.gitignore diff --git a/camp1-booklog/stage4/views/contact.jade b/stage4/views/contact.jade similarity index 100% rename from camp1-booklog/stage4/views/contact.jade rename to stage4/views/contact.jade diff --git a/camp1-booklog/stage4/views/index.jade b/stage4/views/index.jade similarity index 100% rename from camp1-booklog/stage4/views/index.jade rename to stage4/views/index.jade diff --git a/camp1-booklog/stage4/views/layout.jade b/stage4/views/layout.jade similarity index 100% rename from camp1-booklog/stage4/views/layout.jade rename to stage4/views/layout.jade