├── .bowerrc ├── .gitignore ├── public ├── css │ └── app.css ├── scripts │ ├── src │ │ ├── directives.js │ │ ├── filters.js │ │ ├── main.js │ │ ├── app.js │ │ ├── services.js │ │ └── controllers.js │ └── test │ │ ├── appSpec.js │ │ └── test-main.js └── karma.conf.js ├── views ├── partials │ ├── header.html │ ├── login.html │ ├── nav.html │ ├── register.html │ └── auth │ │ ├── thing.html │ │ ├── person.html │ │ └── home.html └── index.html ├── tools └── app.build.js ├── models ├── models.js ├── person.js ├── thing.js └── user.js ├── bower.json ├── package.json ├── config ├── database.js └── passport.js ├── Gruntfile.js ├── server.js ├── app ├── routes.js └── api.js └── README.md /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/scripts/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/scripts/lib/ 3 | *.idea/ 4 | public/scripts/webapp.min.js 5 | tools/webapp.min.js -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- 1 | /* app css stylesheet */ 2 | 3 | .no-bottom-margin { 4 | margin-bottom: 0px; 5 | border-radius: 0px; 6 | } 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /views/partials/header.html: -------------------------------------------------------------------------------- 1 |
Star your web-application, from here!
4 || Name | 25 |Size | 26 |27 | | 28 | | ||||
|---|---|---|---|---|---|---|---|
| {{thing.name}} | 33 |{{thing.size}} | 34 |35 | 38 | | 39 |40 | 43 | | 44 | 45 | 46 |47 | 48 | | 49 |50 | 51 | | 52 |53 | 56 | | 57 |58 | 61 | | 62 |
| Name | 85 |Age | 86 |87 | | 88 | | ||||
|---|---|---|---|---|---|---|---|
| {{person.name}} | 95 |{{person.age}} | 96 |97 | 100 | | 101 |102 | 105 | | 106 | 107 |108 | 109 | | 110 |111 | 112 | | 113 |114 | 117 | | 118 |119 | 122 | | 123 | 124 |